Skip to content

Instantly share code, notes, and snippets.

@vlna
Last active November 29, 2018 20:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vlna/c4fef14f88ee1bf77a9169ad619f887e to your computer and use it in GitHub Desktop.
Save vlna/c4fef14f88ee1bf77a9169ad619f887e to your computer and use it in GitHub Desktop.
yaourt installer
#!/bin/bash
sudo pacman -Sy
sudo pacman -S base-devel
wget https://aur.archlinux.org/cgit/aur.git/snapshot/package-query.tar.gz
tar -zxvf package-query.tar.gz
cd package-query ; makepkg ; cd ..
wget https://aur.archlinux.org/cgit/aur.git/snapshot/yaourt.tar.gz
tar -zxvf yaourt.tar.gz
cd yaourt ; makepkg ; cd ..
sudo pacman -U */*.pkg.tar.xz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment