forked from ports/contrib
16 lines
480 B
Plaintext
16 lines
480 B
Plaintext
# Description: Simple password manager using gpg and ordinary unix directories
|
|
# URL: https://www.passwordstore.org/
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: gnupg git pwgen tree
|
|
# Nice to have: xclip xsel
|
|
|
|
name=password-store
|
|
version=1.7.4
|
|
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
|
|
}
|