| OLD | NEW |
| 1 # Linux Open SUSE Build Instructions | 1 # Building Chromium on openSUSE |
| 2 | 2 |
| 3 This page includes some instruction to build Chromium on openSUSE 11.1 and 11.0. | 3 Generally speaking, follow the [Linux Build Instructions](linux_build_instructio
ns.md). |
| 4 Before reading this page you need to learn the | 4 However, do the following instead to install the build dependencies: |
| 5 [Linux Build Instructions](linux_build_instructions.md). | |
| 6 | 5 |
| 7 ## How to Install Dependencies: | 6 ## Install the build dependencies: |
| 8 | 7 |
| 9 Use zypper command to install dependencies: | 8 Use zypper command to install dependencies: |
| 10 | 9 |
| 11 (openSUSE 11.1 and higher) | 10 (openSUSE 11.1 and higher) |
| 12 | 11 |
| 13 sudo zypper in subversion pkg-config python perl \ | 12 sudo zypper in subversion pkg-config python perl \ |
| 14 bison flex gperf mozilla-nss-devel glib2-devel gtk-devel \ | 13 bison flex gperf mozilla-nss-devel glib2-devel gtk-devel \ |
| 15 wdiff lighttpd gcc gcc-c++ gconf2-devel mozilla-nspr \ | 14 wdiff lighttpd gcc gcc-c++ gconf2-devel mozilla-nspr \ |
| 16 mozilla-nspr-devel php5-fastcgi alsa-devel libexpat-devel \ | 15 mozilla-nspr-devel php5-fastcgi alsa-devel libexpat-devel \ |
| 17 libjpeg-devel libbz2-devel | 16 libjpeg-devel libbz2-devel |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 sudo ln -s /usr/share/fonts/truetype/verdanaz.ttf /usr/share/fonts/truetype/mstt
corefonts/Verdana_Bold_Italic.ttf | 62 sudo ln -s /usr/share/fonts/truetype/verdanaz.ttf /usr/share/fonts/truetype/mstt
corefonts/Verdana_Bold_Italic.ttf |
| 64 ``` | 63 ``` |
| 65 | 64 |
| 66 And then for the Java fonts: | 65 And then for the Java fonts: |
| 67 | 66 |
| 68 ```shell | 67 ```shell |
| 69 sudo mkdir -p /usr/share/fonts/truetype/ttf-lucida | 68 sudo mkdir -p /usr/share/fonts/truetype/ttf-lucida |
| 70 sudo find /usr/lib*/jvm/java-1.6.*-sun-*/jre/lib -iname '*.ttf' -print \ | 69 sudo find /usr/lib*/jvm/java-1.6.*-sun-*/jre/lib -iname '*.ttf' -print \ |
| 71 -exec ln -s {} /usr/share/fonts/truetype/ttf-lucida \; | 70 -exec ln -s {} /usr/share/fonts/truetype/ttf-lucida \; |
| 72 ``` | 71 ``` |
| 73 | |
| 74 ## Building the software | |
| 75 | |
| 76 Please refer to the [Linux Build Instructions](linux_build_instructions.md). | |
| 77 | |
| 78 Please update this page if you use different steps. | |
| OLD | NEW |