From 5d82111e0fe1b9002f07855a523186da5fdbeb78 Mon Sep 17 00:00:00 2001 From: "Aaron W. Swenson" Date: Wed, 12 Apr 2017 08:54:18 -0400 Subject: Add gitignore and makefile --- .gitignore | 1 + Makefile | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..77482bd --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +eselect-postgresql* diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..22dec4a --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +D := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) +V := $(shell grep V $(D)/postgresql.eselect | grep -Po '[0-9.]+') + +all: + mkdir -p $(D)/eselect-postgresql-$(V) + cp $(D)/postgresql.eselect $(D)/eselect-postgresql-$(V)/ + tar cjf $(D)/eselect-postgresql-$(V).tbz2 $(D)/eselect-postgresql-$(V) + +clean: + rm $(D)/eselect-postgresql-$(V)/postgresql.eselect + rmdir $(D)/eselect-postgresql-$(V) + rm $(D)/eselect-postgresql-$(V).tbz2 -- cgit v1.2.3-65-gdbad