Date: Monday, July 1, 2013 @ 22:27:58 Author: lfleischer Revision: 93320
Initial import Added: pass/ pass/repos/ pass/trunk/ pass/trunk/PKGBUILD ----------+ PKGBUILD | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) Added: pass/trunk/PKGBUILD =================================================================== --- pass/trunk/PKGBUILD (rev 0) +++ pass/trunk/PKGBUILD 2013-07-01 20:27:58 UTC (rev 93320) @@ -0,0 +1,23 @@ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> +# Contributor: Simon Zimmermann <[email protected]> + +pkgname=pass +pkgver=1.4.2 +pkgrel=12 +pkgdesc='Stores, retrieves, generates, and synchronizes passwords securely' +url='http://zx2c4.com/projects/password-store/' +source=("http://git.zx2c4.com/password-store/snapshot/password-store-${pkgver}.tar.xz") +md5sums=('c6382dbf5be4036021bf1ce61254b04b') +provides=(pass) +conflicts=(pass-git) +license=('GPL2') +arch=('any') +depends=('xclip' 'bash' 'gnupg' 'pwgen' 'tree') +optdepends=('git') + +package() { + cd "${srcdir}/password-store-$pkgver/" + + make DESTDIR="${pkgdir}" install + install -Dm0644 contrib/pass.zsh-completion "$pkgdir/usr/share/zsh/site-functions/_pass" +}
