summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f19a3a21ff1cdabbd4d5cc257c980ef511c37efa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Maintainer: Carson Rueter <bottomtext97@gmail.com>
pkgname='passman'
pkgver=0.5.0  
pkgrel=1
pkgdesc="Super-secure, easy-to-use password manager."
arch=('any')
url="https://github.com/binex-dsk/passman-aur"
license=('GPL3')
provides=('passman')
depends=('python3' 'python-sqlalchemy')
source=("git+https://github.com/binex-dsk/passman-aur.git")
md5sums=('SKIP')

package() { 
	if [ -d ~/.config/passman != 0 ]; then mkdir ~/.config/passman; fi
        install -Dm755 "${srcdir}/passman-aur/passman" "${pkgdir}/usr/bin/passman"
	install -Dm755 "${srcdir}/passman-aur/passman.pyc" "${pkgdir}${HOME}/.config/passman/passman.pyc"
}