1
0
mirror of https://github.com/pgrondek/config.git synced 2024-11-22 12:03:43 +00:00
config/packages/Makefile
2019-11-04 14:32:55 +01:00

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