Zeal can'be installed with pacman anymore

Semen Martynov 2021-01-04 12:07:56 +03:00
parent 0787639d0e
commit 612acb5e82

@ -1,15 +1,15 @@
Zeal is included in Arch pacman. Just run:
Zeal is not included in Arch pacman, but we have 2 version in the AUR:
```
pacman -S zeal
# all done...
```
- [Stable zeal](https://aur.archlinux.org/packages/zeal/)
- [Latest zeal from git](https://aur.archlinux.org/packages/zeal-git/)
If you want to build from github, you can use [zeal git AUR](https://aur.archlinux.org/packages/zeal-git/)
In addition, you can always compile zeal by your hands from the source code repository.
```
git clone https://aur.archlinux.org/zeal-git.git
cd zeal-git
makepkg
pacman -U *.xz
```
```sh
git clone git@github.com:zealdocs/zeal.git
cd zeal
mkdir build && cd build
cmake ..
make
sudo make install
```