summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 88f00eba42b3c97d54bfd6ba046328e4922ee815 (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
# Maintainer: aimileus < $(echo YWltaWxpdXNAcHJvdG9ubWFpbC5jb20K | base64 -d) >
# 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")
sha256sums=('c4737943083ce92e41faf13c27a9d608105b6285c0840dfb684a7ee294142ddf')

build() {
    cd "$pkgname-$pkgver"
    ./configure --prefix=/usr
    make
}

package() {
    cd "$pkgname-$pkgver"
    make DESTDIR="$pkgdir" install
}