blob: 040b6e3fc90412d8ae7766dbdffa520ea572bfbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Maintainer: jc_gargma <jc_gargma@iserlohn-fortress.net>
# Maintainer (AUR): aimileus <me at aimileus dot nl>
# Maintainer (AUR): rich_o <aurua@riseup.net>
# # I maintain this because:
# AUR version lacks gpg signature enforcement
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
}
|