OLD | NEW |
---|---|
1 #!/bin/bash -e | 1 #!/bin/bash -e |
2 | 2 |
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 # Script to install everything needed to build chromium (well, ideally, anyway) | 7 # Script to install everything needed to build chromium (well, ideally, anyway) |
8 # See http://code.google.com/p/chromium/wiki/LinuxBuildInstructions | 8 # See http://code.google.com/p/chromium/wiki/LinuxBuildInstructions |
9 # and http://code.google.com/p/chromium/wiki/LinuxBuild64Bit | 9 # and http://code.google.com/p/chromium/wiki/LinuxBuild64Bit |
10 | 10 |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
148 linux-libc-dev-armhf-cross | 148 linux-libc-dev-armhf-cross |
149 g++-arm-linux-gnueabihf" | 149 g++-arm-linux-gnueabihf" |
150 | 150 |
151 # Packages to build NaCl, its toolchains, and its ports. | 151 # Packages to build NaCl, its toolchains, and its ports. |
152 naclports_list="ant autoconf bison cmake gawk intltool xutils-dev xsltproc" | 152 naclports_list="ant autoconf bison cmake gawk intltool xutils-dev xsltproc" |
153 nacl_list="g++-mingw-w64-i686 lib32z1-dev | 153 nacl_list="g++-mingw-w64-i686 lib32z1-dev |
154 libasound2:i386 libcap2:i386 libelf-dev:i386 libexif12:i386 | 154 libasound2:i386 libcap2:i386 libelf-dev:i386 libexif12:i386 |
155 libfontconfig1:i386 libgconf-2-4:i386 libglib2.0-0:i386 libgpm2:i386 | 155 libfontconfig1:i386 libgconf-2-4:i386 libglib2.0-0:i386 libgpm2:i386 |
156 libgtk2.0-0:i386 libncurses5:i386 lib32ncurses5-dev | 156 libgtk2.0-0:i386 libncurses5:i386 lib32ncurses5-dev |
157 libnss3:i386 libpango1.0-0:i386 | 157 libnss3:i386 libpango1.0-0:i386 |
158 libssl0.9.8:i386 libtinfo-dev libtinfo-dev:i386 libtool | 158 libssl1.0.0:i386 libtinfo-dev libtinfo-dev:i386 libtool |
159 libxcomposite1:i386 libxcursor1:i386 libxdamage1:i386 libxi6:i386 | 159 libxcomposite1:i386 libxcursor1:i386 libxdamage1:i386 libxi6:i386 |
160 libxrandr2:i386 libxss1:i386 libxtst6:i386 texinfo xvfb | 160 libxrandr2:i386 libxss1:i386 libxtst6:i386 texinfo xvfb |
161 ${naclports_list}" | 161 ${naclports_list}" |
162 | 162 |
163 # Find the proper version of libgbm-dev. We can't just install libgbm-dev as | 163 # Find the proper version of libgbm-dev. We can't just install libgbm-dev as |
164 # it depends on mesa, and only one version of mesa can exists on the system. | 164 # it depends on mesa, and only one version of mesa can exists on the system. |
165 # Hence we must match the same version or this entire script will fail. | 165 # Hence we must match the same version or this entire script will fail. |
166 mesa_variant="" | 166 mesa_variant="" |
167 for variant in "-lts-quantal" "-lts-raring" "-lts-saucy" "-lts-trusty"; do | 167 for variant in "-lts-quantal" "-lts-raring" "-lts-saucy" "-lts-trusty"; do |
168 if $(dpkg-query -Wf'${Status}' libgl1-mesa-glx${variant} 2>/dev/null | \ | 168 if $(dpkg-query -Wf'${Status}' libgl1-mesa-glx${variant} 2>/dev/null | \ |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
411 echo "You can skip the installation of the Chrome OS default founts with" | 411 echo "You can skip the installation of the Chrome OS default founts with" |
412 echo "the command line option: --no-chromeos-fonts." | 412 echo "the command line option: --no-chromeos-fonts." |
413 exit 1 | 413 exit 1 |
414 fi | 414 fi |
415 else | 415 else |
416 echo "Skipping installation of Chrome OS fonts." | 416 echo "Skipping installation of Chrome OS fonts." |
417 fi | 417 fi |
418 | 418 |
419 if test "$do_inst_nacl" = "1"; then | 419 if test "$do_inst_nacl" = "1"; then |
420 echo "Installing symbolic links for NaCl." | 420 echo "Installing symbolic links for NaCl." |
421 if [ ! -r /usr/lib/i386-linux-gnu/libcrypto.so ]; then | 421 # naclports needs to cross build python for i386, but libssl1.0.0:i386 |
422 sudo ln -fs libcrypto.so.0.9.8 /usr/lib/i386-linux-gnu/libcrypto.so | 422 # only contains libcypto.so.1.0.0 and not the symlink needed for |
423 # linking (libcypto.so). | |
424 target=/lib/i386-linux-gnu/libcypto.so.1.0.0 | |
scottmg
2015/02/13 06:39:59
"crypto" or "cypto"?
Sam Clegg
2015/02/13 17:23:17
Ouch. Thanks. Done.
| |
425 linkname=/usr/lib/i386-linux-gnu/libcrypto.so | |
426 if [ -L $linkname ]; then | |
427 if [ "$(basename $(readlink $linkname))" != "$(basename $target)" ]; then | |
428 sudo rm $linkname | |
429 fi | |
423 fi | 430 fi |
424 if [ ! -r /usr/lib/i386-linux-gnu/libssl.so ]; then | 431 if [ ! -r $linkname ]; then |
425 sudo ln -fs libssl.so.0.9.8 /usr/lib/i386-linux-gnu/libssl.so | 432 sudo ln -fs $target $linkname |
433 fi | |
434 | |
435 target=/lib/i386-linux-gnu/libssl.so.1.0.0 | |
436 linkname=/usr/lib/i386-linux-gnu/libssl.so | |
437 if [ -L $linkname ]; then | |
438 if [ "$(basename $(readlink $linkname))" != "$(basename $target)" ]; then | |
439 sudo rm $linkname | |
440 fi | |
441 fi | |
442 if [ ! -r $linkname ]; then | |
443 sudo ln -fs $target $linkname | |
426 fi | 444 fi |
427 else | 445 else |
428 echo "Skipping symbolic links for NaCl." | 446 echo "Skipping symbolic links for NaCl." |
429 fi | 447 fi |
OLD | NEW |