update/makefile
René Fuhry 2aca92f351
removed pacutils dependency
the script now uses pacman's build in flag to output all pkg's (even looks the same)
2023-01-28 01:54:33 +01:00

13 lines
310 B
Makefile

VER = "v1.2"
install:
@echo "==> Installing update $(VER)..."
@sudo install -Dm755 update /usr/local/bin/update
@cp update.conf ${HOME}/.config/
@echo "==> Finished."
uninstall:
@echo "==> Uninstalling update $(VER)..."
@sudo rm /usr/local/bin/update ${HOME}/.config/update.conf
@echo "==> Finished."