1
0
mirror of https://github.com/pgrondek/config.git synced 2024-11-22 12:03:43 +00:00

[packages] Added makefile to install packages

This commit is contained in:
pgrondek 2019-07-11 22:41:04 +02:00
parent 0927f43304
commit 4a7be471b2

14
packages/Makefile Normal file
View File

@ -0,0 +1,14 @@
PACKAGES=vim git traceroute command-not-found dnsutils firefox
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 $(APT)