mirror of
https://github.com/pgrondek/config.git
synced 2024-11-25 21:25:39 +00:00
15 lines
281 B
Makefile
15 lines
281 B
Makefile
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
|
|
apt install -y $(APT)
|