config/packages/Makefile
Przemysław Grondek 234680c374 [packages] add htop
2019-11-04 14:31:08 +01:00

15 lines
286 B
Makefile

PACKAGES=vim git traceroute command-not-found dnsutils firefox-esr 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)