summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
+}