forked from ports/contrib
16 lines
494 B
Plaintext
16 lines
494 B
Plaintext
# Description: Simple password manager using gpg and ordinary unix directories.
|
|
# URL: https://www.passwordstore.org/
|
|
# Maintainer: Fredrik Rinnestam, fredrik at rinnestam dot se
|
|
# Depends on: gnupg, git, pwgen, tree
|
|
# Nice to have: xclip, xsel
|
|
|
|
name=password-store
|
|
version=1.7.3
|
|
release=1
|
|
source=(https://git.zx2c4.com/password-store/snapshot/password-store-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
FORCE_BASHCOMP=1 make DESTDIR=$PKG BASHCOMP_PATH=$PKG/etc/bash_completion.d install
|
|
}
|