diff options
author | Robin Dupret <robin.dupret@gmail.com> | 2013-07-24 18:12:00 +0200 |
---|---|---|
committer | Robin Dupret <robin.dupret@gmail.com> | 2013-07-24 18:12:00 +0200 |
commit | 1565821c3432b5723909bf8b3b08d4230efa42f6 (patch) | |
tree | b6f873b7d4a08e3c046d123d2bae16ded12c5190 /guides/source | |
parent | 700c6c65bcce17d4c61423ceaef031bcbe203337 (diff) | |
download | rails-1565821c3432b5723909bf8b3b08d4230efa42f6.tar.gz rails-1565821c3432b5723909bf8b3b08d4230efa42f6.tar.bz2 rails-1565821c3432b5723909bf8b3b08d4230efa42f6.zip |
Add packages list for ArchLinux [ci skip]
Add the packages required on Arch Linux when setting up the development
dependencies
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/development_dependencies_install.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/guides/source/development_dependencies_install.md b/guides/source/development_dependencies_install.md index ccbb8ab658..d6d8429086 100644 --- a/guides/source/development_dependencies_install.md +++ b/guides/source/development_dependencies_install.md @@ -57,6 +57,12 @@ If you are on Fedora or CentOS, you can run $ sudo yum install libxml2 libxml2-devel libxslt libxslt-devel ``` +If you are running Arch Linux, you're done with: + +```bash +$ sudo pacman -S lixml2 libxslt +``` + If you have any problems with these libraries, you can install them manually by compiling the source code. Just follow the instructions at the [Red Hat/CentOS section of the Nokogiri tutorials](http://nokogiri.org/tutorials/installing_nokogiri.html#red_hat__centos) . Also, SQLite3 and its development files for the `sqlite3` gem — in Ubuntu you're done with just @@ -71,6 +77,12 @@ And if you are on Fedora or CentOS, you're done with $ sudo yum install sqlite3 sqlite3-devel ``` +If you are on Arch Linux, you will need to run: + +```bash +$ sudo pacman -S sqlite +``` + Get a recent version of [Bundler](http://gembundler.com/) ```bash @@ -137,6 +149,14 @@ $ sudo yum install mysql-server mysql-devel $ sudo yum install postgresql-server postgresql-devel ``` +If you are running Arch Linux, MySQL isn't supported anymore so you will need to +use MariaDB instead (see [this announcement](https://www.archlinux.org/news/mariadb-replaces-mysql-in-repositories/)): + +```bash +$ sudo pacman -S mariadb libmariadbclient mariadb-clients +$ sudo pacman -S postgresql postgresql-libs +``` + After that, run: ```bash |