29 lines
861 B
Text
29 lines
861 B
Text
# Maintainer: Lukas Fleischer <lfleischer@archlinux.org>
|
|
# Contributor: Simon Zimmermann <simon@insmo.com>
|
|
|
|
pkgname='pass'
|
|
pkgver=1.7.4
|
|
pkgrel=0
|
|
pkgdesc='Stores, retrieves, generates, and synchronizes passwords securely'
|
|
arch='noarch'
|
|
url='https://www.passwordstore.org/'
|
|
license='GPL2'
|
|
depends='xclip bash gnupg tree git grep'
|
|
subpackages='pass-doc'
|
|
source="https://git.zx2c4.com/password-store/snapshot/password-store-${pkgver}.tar.xz"
|
|
|
|
check() {
|
|
cd "${srcdir}/password-store-$pkgver/"
|
|
make test
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/password-store-$pkgver/"
|
|
make DESTDIR="${pkgdir}" WITH_ALLCOMP=yes install
|
|
|
|
cd contrib/dmenu
|
|
install -Dm0755 passmenu "${pkgdir}/usr/bin/passmenu"
|
|
}
|
|
sha512sums="
|
|
1fe108895b224451b54e545d399b6a97040e094049448509f92ae33164a5cf9044a91f52edfc705fcf333f6526df1a478deeebc4df109764d58100f9e3e22681 password-store-1.7.4.tar.xz
|
|
"
|