12 lines
232 B
Bash
Executable file
12 lines
232 B
Bash
Executable file
#!/bin/sh
|
|
|
|
case $1 in
|
|
install|in|i)
|
|
cd ~/.aur
|
|
[[ ! -d ~/.aur/$2 ]] && git clone https://aur.archlinux.org/$2.git
|
|
cd ~/.aur/$2
|
|
makepkg -si ;;
|
|
|
|
*) curl https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=$1 ;;
|
|
|
|
esac
|