summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 23d6b9a88ba280ae4f7e98636264f2f82c389245 (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
}