diff --git a/packages/Makefile b/packages/Makefile new file mode 100644 index 0000000..02ea4e0 --- /dev/null +++ b/packages/Makefile @@ -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)