28 lines
867 B
Bash
28 lines
867 B
Bash
# Template file for 'pass'
|
|
pkgname=pass
|
|
version=1.7.3
|
|
revision=5
|
|
wrksrc="password-store-${version}"
|
|
build_style=gnu-makefile
|
|
make_install_args="WITH_BASHCOMP=yes WITH_ZSHCOMP=yes WITH_FISHCOMP=yes"
|
|
depends="bash gnupg2 tree which"
|
|
checkdepends="gnupg2 tree which git"
|
|
short_desc="Stores, retrieves, generates, and synchronizes passwords securely"
|
|
maintainer="teldra <teldra@rotce.de>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://www.passwordstore.org"
|
|
distfiles="https://git.zx2c4.com/password-store/snapshot/password-store-${version}.tar.xz"
|
|
checksum=2b6c65846ebace9a15a118503dcd31b6440949a30d3b5291dfb5b1615b99a3f4
|
|
|
|
do_check() {
|
|
mkdir -p fake-home
|
|
HOME=$(pwd)/fake-home make test
|
|
}
|
|
|
|
passmenu_package() {
|
|
short_desc="Dmenu-based interface to pass"
|
|
depends="dmenu xdotool ${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vbin contrib/dmenu/passmenu
|
|
}
|
|
}
|