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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 flex fonts-thai-tlwg g++ git-core git-svn gperf language-pack-da | 98 flex fonts-thai-tlwg g++ git-core git-svn gperf language-pack-da |
99 language-pack-fr language-pack-he language-pack-zh-hant | 99 language-pack-fr language-pack-he language-pack-zh-hant |
100 libapache2-mod-php5 libasound2-dev libbrlapi-dev libav-tools | 100 libapache2-mod-php5 libasound2-dev libbrlapi-dev libav-tools |
101 libbz2-dev libcairo2-dev libcap-dev libcups2-dev libcurl4-gnutls-dev | 101 libbz2-dev libcairo2-dev libcap-dev libcups2-dev libcurl4-gnutls-dev |
102 libdrm-dev libelf-dev libexif-dev libgconf2-dev libgl1-mesa-dev | 102 libdrm-dev libelf-dev libexif-dev libgconf2-dev libgl1-mesa-dev |
103 libglib2.0-dev libglu1-mesa-dev libgnome-keyring-dev libgtk2.0-dev | 103 libglib2.0-dev libglu1-mesa-dev libgnome-keyring-dev libgtk2.0-dev |
104 libkrb5-dev libnspr4-dev libnss3-dev libpam0g-dev libpci-dev | 104 libkrb5-dev libnspr4-dev libnss3-dev libpam0g-dev libpci-dev |
105 libpulse-dev libsctp-dev libspeechd-dev libsqlite3-dev libssl-dev | 105 libpulse-dev libsctp-dev libspeechd-dev libsqlite3-dev libssl-dev |
106 libudev-dev libwww-perl libxslt1-dev libxss-dev libxt-dev libxtst-dev | 106 libudev-dev libwww-perl libxslt1-dev libxss-dev libxt-dev libxtst-dev |
107 mesa-common-dev openbox patch perl php5-cgi pkg-config python | 107 mesa-common-dev openbox patch perl php5-cgi pkg-config python |
108 python-cherrypy3 python-crypto python-dev python-opencv python-openssl | 108 python-cherrypy3 python-crypto python-dev python-numpy python-opencv |
109 python-psutil rpm ruby subversion ttf-dejavu-core ttf-indic-fonts | 109 python-openssl python-psutil rpm ruby subversion ttf-dejavu-core |
110 ttf-kochi-gothic ttf-kochi-mincho wdiff xfonts-mathml zip | 110 ttf-indic-fonts ttf-kochi-gothic ttf-kochi-mincho wdiff xfonts-mathml |
111 $chromeos_dev_list" | 111 zip $chromeos_dev_list" |
112 | 112 |
113 # 64-bit systems need a minimum set of 32-bit compat packages for the pre-built | 113 # 64-bit systems need a minimum set of 32-bit compat packages for the pre-built |
114 # NaCl binaries. | 114 # NaCl binaries. |
115 if file /sbin/init | grep -q 'ELF 64-bit'; then | 115 if file /sbin/init | grep -q 'ELF 64-bit'; then |
116 dev_list="${dev_list} libc6-i386 lib32gcc1 lib32stdc++6" | 116 dev_list="${dev_list} libc6-i386 lib32gcc1 lib32stdc++6" |
117 fi | 117 fi |
118 | 118 |
119 # Run-time libraries required by chromeos only | 119 # Run-time libraries required by chromeos only |
120 chromeos_lib_list="libpulse0 libbz2-1.0" | 120 chromeos_lib_list="libpulse0 libbz2-1.0" |
121 | 121 |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
401 echo "Installing symbolic links for NaCl." | 401 echo "Installing symbolic links for NaCl." |
402 if [ ! -r /usr/lib/i386-linux-gnu/libcrypto.so ]; then | 402 if [ ! -r /usr/lib/i386-linux-gnu/libcrypto.so ]; then |
403 sudo ln -fs libcrypto.so.0.9.8 /usr/lib/i386-linux-gnu/libcrypto.so | 403 sudo ln -fs libcrypto.so.0.9.8 /usr/lib/i386-linux-gnu/libcrypto.so |
404 fi | 404 fi |
405 if [ ! -r /usr/lib/i386-linux-gnu/libssl.so ]; then | 405 if [ ! -r /usr/lib/i386-linux-gnu/libssl.so ]; then |
406 sudo ln -fs libssl.so.0.9.8 /usr/lib/i386-linux-gnu/libssl.so | 406 sudo ln -fs libssl.so.0.9.8 /usr/lib/i386-linux-gnu/libssl.so |
407 fi | 407 fi |
408 else | 408 else |
409 echo "Skipping symbolic links for NaCl." | 409 echo "Skipping symbolic links for NaCl." |
410 fi | 410 fi |
OLD | NEW |