blob: c387c4fe3c6d085b302e48a1fbd16fe06582bff1 (
plain)
1 # Description: Simple password manager using gpg and ordinary unix directories
2 # URL: https://www.passwordstore.org/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: gnupg git pwgen tree
5 # Nice to have: xclip xsel
6
7 name=password-store
8 version=1.7.4
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 }
|