Date: Thursday, October 10, 2019 @ 16:41:45 Author: diabonas Revision: 514480
Move paperkey 1.6 from the AUR to [community] Added: paperkey/ paperkey/repos/ paperkey/trunk/ paperkey/trunk/PKGBUILD ----------+ PKGBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) Added: paperkey/trunk/PKGBUILD =================================================================== --- paperkey/trunk/PKGBUILD (rev 0) +++ paperkey/trunk/PKGBUILD 2019-10-10 16:41:45 UTC (rev 514480) @@ -0,0 +1,29 @@ +# Maintainer: Jonas Witschel <[email protected]> +pkgname=paperkey +pkgver=1.6 +pkgrel=2 +pkgdesc='Archive OpenPGP keys on paper' +arch=('x86_64') +url='http://www.jabberwocky.com/software/paperkey/' +license=('GPL') +depends=('glibc') +source=("$url/$pkgname-$pkgver.tar.gz"{,.sig}) +sha512sums=('a07fc22bf56cd9524ecba61d1bf00102e6e97842e219682771187a2a2327c9daa885d457417bb2ea960f5ebd66bd711fa1d86687fda159647ff47980dee21b01' + 'SKIP') +validpgpkeys=('7D92FD313AB6F3734CC59CA1DB698D7199242560') # David M. Shaw <[email protected]> + +build() { + cd "$pkgname-$pkgver" + ./configure --prefix=/usr + make +} + +check() { + cd "$pkgname-$pkgver" + make check +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +}
