instalee/handlers/make/install

10 lines
155 B
Text
Raw Normal View History

2022-07-05 11:36:39 +02:00
#!/bin/sh -e
case $1 in
(*://*) cd "$(mktemp -d)"
2022-07-05 11:36:39 +02:00
git clone "$1"
cd "$(basename "${1%.git}")";;
(*) cd "$1";;
esac
shift
2020-06-21 16:20:30 +02:00
sudo checkinstall