instalee/handlers/arch/install_makepkg

10 lines
165 B
Text
Raw Normal View History

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