summaryrefslogtreecommitdiff
path: root/parabola-keyring/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2014-09-05 01:31:14 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2014-09-05 01:31:14 -0400
commit4b70501e432eb5fd9ed04a4afbadafabd982e9fc (patch)
treeb09fe80d9ec0ec3eb82f46dbfce960dc66aaf3f4 /parabola-keyring/Makefile
parent1ab58422fb47e22e178716efa3fbce5beabbc174 (diff)
restructure to have most data in YAML
Diffstat (limited to 'parabola-keyring/Makefile')
-rw-r--r--parabola-keyring/Makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/parabola-keyring/Makefile b/parabola-keyring/Makefile
deleted file mode 100644
index 9c307fd..0000000
--- a/parabola-keyring/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-V=20140623
-
-PREFIX = /usr/local
-
-install:
- install -dm755 $(DESTDIR)$(PREFIX)/share/pacman/keyrings/
- install -m0644 parabola{.gpg,-trusted,-revoked} $(DESTDIR)$(PREFIX)/share/pacman/keyrings/
-
-uninstall:
- rm -f $(DESTDIR)$(PREFIX)/share/pacman/keyrings/parabola{.gpg,-trusted,-revoked}
- rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(PREFIX)/share/pacman/keyrings/
-
-dist:
- mkdir -pv parabola-keyring-$(V)/
- cp -v Makefile parabola.gpg parabola-revoked parabola-trusted parabola-keyring-$(V)/
- bsdtar czf parabola-keyring-$(V).tar.gz parabola-keyring-$(V)/
- gpg --detach-sign --use-agent parabola-keyring-$(V).tar.gz
- rm -rv parabola-keyring-$(V)/
-
-upload:
- scp parabola-keyring-$(V).tar.gz parabola-keyring-$(V).tar.gz.sig parabola:public/other/parabola-keyring
-
-.PHONY: install uninstall dist upload