summaryrefslogtreecommitdiffstats
path: root/install
blob: 2216e665a4619eeaabab17fb84418cee725b0dd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -eu

[ -d "$1" ] || (echo "package $1 not found" >&2; exit 1)

./build "$1"
stow "$1"
[ -f "$1/Makefile" ] && (cd "$1" && make -s install)

true