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