diff options
author | Aaron W. Swenson <titanofold@gentoo.org> | 2017-04-12 08:54:18 -0400 |
---|---|---|
committer | Aaron W. Swenson <titanofold@gentoo.org> | 2017-04-12 08:54:18 -0400 |
commit | 5d82111e0fe1b9002f07855a523186da5fdbeb78 (patch) | |
tree | 7af636d66454e2c538c2a7f52252f5ab1d5e9028 | |
parent | Remove redundant do_unset() call (diff) | |
download | eselect-5d82111e0fe1b9002f07855a523186da5fdbeb78.tar.gz eselect-5d82111e0fe1b9002f07855a523186da5fdbeb78.tar.bz2 eselect-5d82111e0fe1b9002f07855a523186da5fdbeb78.zip |
Add gitignore and makefile
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 12 |
2 files changed, 13 insertions, 0 deletions
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 |