I want to install Chromium on my arch arm pi, but it requires me to install yaourt.
Here are the basic steps that I did to make yaourt possible on my Arch Arm Pi.
1.Install the ff: packages:
$sudo pacman -S gcc wget make
2.Install Package Query First
$wget https://aur.archlinux.org/packages/pa/package-query/package-query.tar.gz
$tar -xvzf package-query.tar.gz
$cd package-query
$makepkg -s
$sudo pacman -U *.pkg.tar.xz
Then install yaourt packages:
$wget https://aur.archlinux.org/packages/ya/yaourt/yaourt.tar.gz
$tar -xvzf yaourt.tar.gz
$cd yaourt
$makepkg -s
$sudo pacman -U *.pkg.tar.xz
That's it and enjoy Yaourt!
No comments:
Post a Comment