diff options
| author | Davide Carnemolla <cdavide98carnemolla@gmail.com> | 2020-03-07 01:17:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-07 01:17:10 +0100 |
| commit | 643a910cadb29026ea3b76bbe4bb59b88176d7af (patch) | |
| tree | 2a2404cf1212e5f1be41c1b05547fb1ed5a99d6d /docs | |
| parent | 6af449577112ad12178073c8ac99a8efbc53c86a (diff) | |
| download | wiki-643a910cadb29026ea3b76bbe4bb59b88176d7af.tar.gz wiki-643a910cadb29026ea3b76bbe4bb59b88176d7af.tar.bz2 wiki-643a910cadb29026ea3b76bbe4bb59b88176d7af.zip | |
Added installation guide for Arch Linux users (#194)
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/arch-linux.md | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/docs/arch-linux.md b/docs/arch-linux.md new file mode 100644 index 0000000..13cc5de --- /dev/null +++ b/docs/arch-linux.md @@ -0,0 +1,27 @@ +# Arch Linux Install +If you are an Arch Linux user you can install it from AUR ([Arch User Repository](https://wiki.archlinux.org/index.php/Arch_User_Repository)) + +## Install dependencies + +### Install *base-devel* +All you need to install AUR packages is [*base-devel*](https://www.archlinux.org/groups/x86_64/base-devel/) and [*git*](https://www.archlinux.org/packages/?name=git), you can install them with *pacman*: +``` +$ sudo pacman -S base-devel git +``` + +### Install *ACE* +Then you need to install [*ACE*](https://aur.archlinux.org/packages/ace/) package from AUR: +``` +git clone https://aur.archlinux.org/ace.git +cd ace +makepkg -si +``` +## Install *AzerothCore* +After that you can install [azeroth-core](https://aur.archlinux.org/packages/azeroth-core/) package: + +``` +git clone https://aur.archlinux.org/azeroth-core.git +cd azeroth-core +makepkg -si +``` +Moreover, if you want you can use [*yay*](https://github.com/Jguer/yay) as AUR package manager to install AUR packages. |
