diff --git a/scripts/Makefile b/scripts/Makefile new file mode 100644 index 0000000..60aaccf --- /dev/null +++ b/scripts/Makefile @@ -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}