OLD | NEW |
1 #!/bin/bash -e | 1 #!/bin/bash -e |
2 | 2 |
3 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2009 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 | 143 |
144 # Full list of required run-time libraries | 144 # Full list of required run-time libraries |
145 lib_list="libatk1.0-0 libc6 libasound2 libcairo2 libdbus-glib-1-2 libexpat1 | 145 lib_list="libatk1.0-0 libc6 libasound2 libcairo2 libdbus-glib-1-2 libexpat1 |
146 libfontconfig1 libfreetype6 libglib2.0-0 libgtk2.0-0 libnspr4-0d | 146 libfontconfig1 libfreetype6 libglib2.0-0 libgtk2.0-0 libnspr4-0d |
147 libnss3-1d libpango1.0-0 libpcre3 libpixman-1-0 libpng12-0 libstdc++6 | 147 libnss3-1d libpango1.0-0 libpcre3 libpixman-1-0 libpng12-0 libstdc++6 |
148 libsqlite3-0 libx11-6 libxau6 libxcb1 libxcomposite1 | 148 libsqlite3-0 libx11-6 libxau6 libxcb1 libxcomposite1 |
149 libxcursor1 libxdamage1 libxdmcp6 libxext6 libxfixes3 libxi6 | 149 libxcursor1 libxdamage1 libxdmcp6 libxext6 libxfixes3 libxi6 |
150 libxinerama1 libxrandr2 libxrender1 zlib1g" | 150 libxinerama1 libxrandr2 libxrender1 zlib1g" |
151 | 151 |
152 # Debugging symbols for all of the run-time libraries | 152 # Debugging symbols for all of the run-time libraries |
153 dbg_list="libatk1.0-dbg libc6-dbg libcairo2-dbg libdbus-glib-1-2-dbg | 153 dbg_list="libatk1.0-dbg libc6-dbg libcairo2-dbg |
154 libfontconfig1-dbg libglib2.0-0-dbg libgtk2.0-0-dbg libnspr4-0d-dbg | 154 libfontconfig1-dbg libglib2.0-0-dbg libgtk2.0-0-dbg libnspr4-0d-dbg |
155 libnss3-1d-dbg libpango1.0-0-dbg libpcre3-dbg libpixman-1-0-dbg | 155 libnss3-1d-dbg libpango1.0-0-dbg libpcre3-dbg libpixman-1-0-dbg |
156 libx11-6-dbg libxau6-dbg libxcb1-dbg libxcomposite1-dbg | 156 libx11-6-dbg libxau6-dbg libxcb1-dbg libxcomposite1-dbg |
157 libxcursor1-dbg libxdamage1-dbg libxdmcp6-dbg libxext6-dbg | 157 libxcursor1-dbg libxdamage1-dbg libxdmcp6-dbg libxext6-dbg |
158 libxfixes3-dbg libxi6-dbg libxinerama1-dbg libxrandr2-dbg | 158 libxfixes3-dbg libxi6-dbg libxinerama1-dbg libxrandr2-dbg |
159 libxrender1-dbg zlib1g-dbg" | 159 libxrender1-dbg zlib1g-dbg" |
160 | 160 |
161 # Standard 32bit compatibility libraries | 161 # Standard 32bit compatibility libraries |
162 cmp_list="ia32-libs lib32asound2-dev lib32readline5-dev lib32stdc++6 lib32z1 | 162 cmp_list="ia32-libs lib32asound2-dev lib32readline5-dev lib32stdc++6 lib32z1 |
163 lib32z1-dev libc6-dev-i386 libc6-i386" | 163 lib32z1-dev libc6-dev-i386 libc6-i386" |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 sed -e 's/[.]so[.][0-9].*/.so/' | | 432 sed -e 's/[.]so[.][0-9].*/.so/' | |
433 sort -u); do | 433 sort -u); do |
434 [ "x${i##*/}" = "xld-linux.so" ] && continue | 434 [ "x${i##*/}" = "xld-linux.so" ] && continue |
435 [ -r "$i" ] && continue | 435 [ -r "$i" ] && continue |
436 j="$(ls "$i."* | sed -e 's/.*[.]so[.]\([^.]*\)$/\1/;t;d' | | 436 j="$(ls "$i."* | sed -e 's/.*[.]so[.]\([^.]*\)$/\1/;t;d' | |
437 sort -n | tail -n 1)" | 437 sort -n | tail -n 1)" |
438 [ -r "$i.$j" ] || continue | 438 [ -r "$i.$j" ] || continue |
439 sudo ln -s "${i##*/}.$j" "$i" | 439 sudo ln -s "${i##*/}.$j" "$i" |
440 done | 440 done |
441 fi | 441 fi |
OLD | NEW |