1 # Contributor: Peter Slizik <peter dot slizik at gmail com>
6 pkgdesc='A useful and reliable personal password manager, written in Tcl/Tk.'
8 url='http://www.xs4all.nl/~wbsoft/linux/tkpasman.html'
10 depends=('tcl>=8.3' 'tk>=8.3')
11 optdepends=('openssl: optional encryption of the password file')
12 install='tkpasman.install'
13 source=("http://www.xs4all.nl/~wbsoft/linux/projects/TkPasMan-$pkgver.tar.gz"
14 'config.patch' 'Makefile.patch')
15 md5sums=('192859131fb0891b8c7ac5f41876e520'
16 '2f056893c46d0545ffb3383081ff6f7d'
17 '55a9d86f1ae5d22089da357d759166d5')
20 cd "$srcdir/TkPasMan-$pkgver"
22 patch -i ../config.patch || return 1
23 patch -i ../Makefile.patch || return 1
26 make DESTDIR="$pkgdir" install || return 1
29 # vim:set ts=2 sw=2 et: