1
0
Fork 0
mirror of https://github.com/pgrondek/config.git synced 2025-02-16 14:56:28 +00:00
config/packages/Makefile

14 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)