Advertisement
quark_zju

install-yaourt.sh

Apr 25th, 2013
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.31 KB | None | 0 0
  1. #!/bin/bash
  2. # Yaourt (Archlinux AUR tool install script)
  3. wget -c https://aur.archlinux.org/packages/ya/yaourt/yaourt.tar.gz
  4. wget -c https://aur.archlinux.org/packages/pa/package-query/package-query.tar.gz
  5.  
  6. for i in *.tar.gz; do
  7.     tar xf "$i"
  8.     pushd `basename "$i" .tar.gz`
  9.     makepkg -i
  10.     popd
  11. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement