instalee/handlers/make/install

9 lines
129 B
Text
Raw Permalink Normal View History

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