summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2018-07-09 13:19:47 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2018-07-09 13:19:47 -0700
commit4d4e86f3032054a2416bbd437ddb9d9d9da1909e (patch)
tree2ca61efb19062f5f37dd15e5dac938a9412afeee
downloadpaperkey-4d4e86f3032054a2416bbd437ddb9d9d9da1909e.tar.xz
Initial commit
-rw-r--r--PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 0000000..8681680
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,27 @@
+# Maintainer: aimileus <me at aimileus dot nl>
+# Maintainer: rich_o <aurua@riseup.net>
+
+pkgname=paperkey
+pkgver=1.5
+pkgrel=2
+pkgdesc="Make long term backups of OpenPGP keys by printing only the secret bits on paper."
+arch=('x86_64')
+url="http://www.jabberwocky.com/software/paperkey/"
+license=('GPL2')
+depends=('glibc')
+source=("http://www.jabberwocky.com/software/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
+sha256sums=('c4737943083ce92e41faf13c27a9d608105b6285c0840dfb684a7ee294142ddf'
+ 'SKIP')
+validpgpkeys=('7D92FD313AB6F3734CC59CA1DB698D7199242560')
+
+
+build() {
+ cd "$pkgname-$pkgver"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}