Skip to content

Instantly share code, notes, and snippets.

@jorgeramirez
Created September 10, 2012 22:25
Show Gist options
  • Save jorgeramirez/3694433 to your computer and use it in GitHub Desktop.
Save jorgeramirez/3694433 to your computer and use it in GitHub Desktop.
Just a clone of autoyaourt script
#!/bin/bash
# From: https://code.google.com/p/autoyaourt/
wget https://aur.archlinux.org/packages/package-query/package-query.tar.gz
tar zxvf package-query.tar.gz
cd package-query
makepkg -si
cd ..
wget https://aur.archlinux.org/packages/yaourt/yaourt.tar.gz
tar zxvf yaourt.tar.gz
cd yaourt
makepkg -si
cd ..
rm package-query.tar.gz
rm -r package-query
rm yaourt.tar.gz
rm -r yaourt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment