1
0
mirror of https://github.com/pgrondek/config.git synced 2024-11-22 12:03:43 +00:00
config/packages/Makefile
2019-11-05 09:21:53 +01:00

16 lines
328 B
Makefile

PACKAGES=vim git traceroute command-not-found dnsutils firefox screen htop
RM_PACKAGES=nano
APT=aptitude
ROOT_APT=sudo $(APT)
APTITUDE=/usr/bin/aptitude
install: $(APTITUDE)
$(ROOT_APT) update
$(ROOT_APT) install -y $(PACKAGES)
$(ROOT_APT) purge -y $(RM_PACKAGES)
$(APTITUDE):
sudo apt update
sudo apt install -y $(APT)