| OLD | NEW |
| (Empty) |
| 1 # Building Chromium on Arch Linux | |
| 2 | |
| 3 Generally speaking, follow the [Linux Build Instructions](linux_build_instructio
ns.md). | |
| 4 However, do the following instead to install the build dependencies: | |
| 5 | |
| 6 ## Install the build dependencies | |
| 7 | |
| 8 Most of these packages are probably already installed since they're often used, | |
| 9 and the `--needed` parameter ensures that up-to-date packages are not | |
| 10 reinstalled. | |
| 11 | |
| 12 ```shell | |
| 13 $ sudo pacman -S --needed python perl gcc gcc-libs bison flex gperf pkgconfig \ | |
| 14 nss alsa-lib gconf glib2 gtk2 nspr ttf-ms-fonts freetype2 cairo dbus \ | |
| 15 libgnome-keyring | |
| 16 ``` | |
| 17 | |
| 18 For the optional packages on Arch Linux: | |
| 19 | |
| 20 * `php-cgi` is provided with `pacman` | |
| 21 * `wdiff` is not in the main repository but `dwdiff` is. You can get `wdiff` | |
| 22 in AUR/`yaourt` | |
| 23 * `sun-java6-fonts` do not seem to be in main repository or AUR. | |
| OLD | NEW |