add makefile to install
This commit is contained in:
parent
252e845505
commit
f3896398d4
1 changed files with 11 additions and 0 deletions
11
scripts/Makefile
Normal file
11
scripts/Makefile
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
PKGDIR=mkessler/university-setup
|
||||||
|
|
||||||
|
install:
|
||||||
|
mkdir -p /etc/opt/${PKGDIR}/
|
||||||
|
mkdir -p /opt/${PKGDIR}/
|
||||||
|
cp -r config/. /etc/opt/${PKGDIR}/
|
||||||
|
cp -r src/. /opt/${PKGDIR}
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
rm -rf /etc/opt/${PKGDIR}/
|
||||||
|
rm -rf /opt/${PKGDIR}
|
Loading…
Reference in a new issue