mirror of
https://github.com/pgrondek/config.git
synced 2024-11-22 20:13:43 +00:00
15 lines
267 B
Makefile
15 lines
267 B
Makefile
PACKAGES=vim git traceroute command-not-found dnsutils firefox
|
|
RM_PACKAGES=nano
|
|
|
|
APT=aptitude
|
|
APTITUDE=/usr/bin/aptitude
|
|
|
|
install: $(APTITUDE)
|
|
$(APT) update
|
|
$(APT) install -y $(PACKAGES)
|
|
$(APT) purge -y $(RM_PACKAGES)
|
|
|
|
$(APTITUDE):
|
|
apt update
|
|
apt install $(APT)
|