Initial commit and first release~

This commit is contained in:
2019-08-14 22:05:33 +02:00
parent 25e38f198b
commit 6a9c9db7b8
6 changed files with 244 additions and 1 deletions

18
Makefile Normal file
View File

@ -0,0 +1,18 @@
# Author: Bandie <bandie@chaospott.de>
# Copyright: Bandie, 2019, GNU-GPLv3
all:
@echo "Nothing to make. Please run \"make install\"."
@exit 0
install:
@echo "Installing grub-ownership..."
install -vDm 755 etc/grub.d/000_ownership -t "$(PREFIX)/etc/grub.d/"
@echo "Appending not existent config keys..."
./tools/grub_append_cfgkeys -i $(PREFIX)/etc/default/grub
@echo "DONE!"
uninstall:
@echo "Remove grub-ownership..."
rm $(PREFIX)/etc/grub.d/000_ownership
@echo "Removing entries from config file..."
./tools/grub_append_cfgkeys -r $(PREFIX)/etc/default/grub
@echo "DONE!"