config/packages/Makefile
2019-11-04 14:32:55 +01:00

14 lines
282 B
Makefile

PACKAGES=vim git traceroute command-not-found dnsutils firefox screen htop
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 -y $(APT)