Skip to content

Instantly share code, notes, and snippets.

@stengland
Created July 2, 2016 21:47
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 stengland/77bdad404208cbc3ba0d62110dea4194 to your computer and use it in GitHub Desktop.
Save stengland/77bdad404208cbc3ba0d62110dea4194 to your computer and use it in GitHub Desktop.
#!/bin/sh
if [ ! -d $HOME/.aurbuild ]; then
mkdir $HOME/.aurbuild
fi
cd $HOME/.aurbuild
if [ -d $1 ]; then
cd $1
git pull
else
git clone "https://aur.archlinux.org/$1.git"
cd $1
fi
makepkg -sri
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment