instalee/handlers/arch/install_makepkg

9 lines
147 B
Plaintext
Raw Normal View History

2022-07-05 09:26:24 +00:00
#!/bin/sh -e
case "$1" in
(*://*) url=$1;;
(*) url=https://aur.archlinux.org/$1.git;;
esac
git clone "$url"
cd $(basename "${1%.git}")
makepkg -si