One of arch linux based advantage is access to AUR (Arch User Repository). To install AUR package we need tool, the AUR helpers.
There are many AUR Helpers. The most popular AUR helper is yaourt. The problem is that, yaourt is not available in official package. yoaurt itself is an AUR package.
So how do we install an AUR helper, without AUR helper ? Manual install, makepkg is the way.
Reading:
Let me quote from link above:
The global consensus is that Arch users should learn to build manually with makepkg before using an AUR helper.
Manjaro User
Yaourt comes pre-installed with Manjaro so you normally won’t have to install it.
Base Devel
Yaourt do automatic compilation of source code given from AUR.
Since we are dealing with development here, before you begin,
make sure you have base-devel
installed.
$ sudo pacman -S base-devel
The Package Query
AUR Helper need one required package as a dependency.
It is package-query
You can either
Download the snapshot
or clone
Then
Always RTFM
Play with this tool
The Yaourt
With the same procedure:
You can either
Download the snapshot
or clone
Then
Always RTFM
Using pacman
There’s another workaround if you don’t want to do automatic compilation.
and write these three lines.
Do sync your repo, and install both
After both package installed,
you can safely remove the archlinuxfr section from /etc/pacman.conf
.
Using yaourt
After yaourt installed, you can use yaourt to query your package.
You can see the result in image below
Configuration
Yaourt comes with config file. Just copy them to your home directory
I left my ~/.yauortrc
config as below to avoid
too many confirmation question from yaourt.
This configuration is very helpful if you maintain your AUR upgrade regularly with a lot of Syua option in yaourt. This command will update all your AUR at once.
Make sure you know what you are doing when skipping PGP Verification.
Thank you for reading