1
0
mirror of https://github.com/pgrondek/config.git synced 2024-11-22 20:13:43 +00:00
config/packages/Makefile

16 lines
328 B
Makefile
Raw Normal View History

2019-11-04 13:32:55 +00:00
PACKAGES=vim git traceroute command-not-found dnsutils firefox screen htop
RM_PACKAGES=nano
APT=aptitude
2019-11-05 08:21:53 +00:00
ROOT_APT=sudo $(APT)
APTITUDE=/usr/bin/aptitude
install: $(APTITUDE)
2019-11-05 08:21:53 +00:00
$(ROOT_APT) update
$(ROOT_APT) install -y $(PACKAGES)
$(ROOT_APT) purge -y $(RM_PACKAGES)
$(APTITUDE):
2019-11-05 08:21:53 +00:00
sudo apt update
sudo apt install -y $(APT)