Skip to content

Instantly share code, notes, and snippets.

@marmistrz
Created January 3, 2018 16:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marmistrz/2bc86d9197feabd7bb4659be81c62732 to your computer and use it in GitHub Desktop.
Save marmistrz/2bc86d9197feabd7bb4659be81c62732 to your computer and use it in GitHub Desktop.
PKGBUILD for paperkey
# Maintainer: rich_o <aurua@riseup.net>
# Contributor: Marcin Mielniczuk <marmistrz.dev at zoho dot eu>
pkgname=paperkey
pkgver=1.5
pkgrel=1
pkgdesc="Make long term backups of OpenPGP keys by printing only the secret bits on paper."
arch=('i686' '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
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment