1
0
Fork 0
mirror of https://github.com/pgrondek/config.git synced 2025-03-16 19:45:39 +00:00
config/packages/Makefile

15 lines
281 B
Makefile
Raw Normal View History

PACKAGES=vim git traceroute command-not-found dnsutils firefox-esr screen
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
2019-07-12 00:27:21 +02:00
apt install -y $(APT)