blob: 8208b469f2035b2d656157f6f1b58b2df942c97d (
plain)
1 # Description: Simple password manager using gpg and ordinary unix directories.
2 # URL: https://www.passwordstore.org/
3 # Maintainer: Fredrik Rinnestam, fredrik at rinnestam dot se
4 # Depends on: gnupg, git, pwgen, tree
5 # Nice to have: xclip, xsel
6
7 name=password-store
8 version=1.7.3
9 release=1
10 source=(https://git.zx2c4.com/password-store/snapshot/password-store-$version.tar.xz)
11
12 build() {
13 cd $name-$version
14 FORCE_BASHCOMP=1 make DESTDIR=$PKG BASHCOMP_PATH=$PKG/etc/bash_completion.d install
15 }
|