1
0
forked from ports/contrib

password-store: initial release

This commit is contained in:
Fredrik Rinnestam 2013-11-02 01:33:53 +01:00
parent 428a434484
commit b86c314165
3 changed files with 27 additions and 0 deletions

11
password-store/.footprint Normal file
View File

@ -0,0 +1,11 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/bash_completion.d/
-rw-r--r-- root/root etc/bash_completion.d/password-store
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/pass
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/usr/
drwxr-xr-x root/root usr/usr/man/
drwxr-xr-x root/root usr/usr/man/man1/
-rw-r--r-- root/root usr/usr/man/man1/pass.1.gz

1
password-store/.md5sum Normal file
View File

@ -0,0 +1 @@
c6382dbf5be4036021bf1ce61254b04b password-store-1.4.2.tar.xz

15
password-store/Pkgfile Normal file
View File

@ -0,0 +1,15 @@
# Description: Simple password manager using gpg and ordinary unix directories.
# URL: http://zx2c4.com/projects/password-store/
# Maintainer: Fredrik Rinnestam, fredrik at rinnestam dot se
# Depends on: gnupg, git, pwgen, xclip
name=password-store
version=1.4.2
release=1
source=(http://git.zx2c4.com/password-store/snapshot/password-store-$version.tar.xz)
build() {
cd $name-$version
sed -i 's/share/usr/g' Makefile
make DESTDIR=$PKG install
}