mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-15 12:54:15 +01:00
17 lines
302 B
Makefile
17 lines
302 B
Makefile
.PHONY: install
|
|
install:
|
|
@cd PKGBUILDs/${package} && makepkg -scif --noconfirm
|
|
|
|
.PHONY: update-keys
|
|
update-keys:
|
|
@sudo pacman-key --populate
|
|
@sudo pacman-key --refresh-keys
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
@rm -fv **/*.pkg.tar.xz
|
|
@rm -fv **/*.xpi
|
|
@rm -fv **/*.tar.gz
|
|
@rm -fv **/*.tar.bz2
|
|
@rm -fv **/*.vim
|