updated on Thu Jan 5 13:17:10 UTC 2012
[aur-mirror.git] / tkpasman / PKGBUILD
blob4ccfed6bef76fb804b8caa2f82b61c0497fb8004
1 # Contributor: Peter Slizik <peter dot slizik at gmail com>
3 pkgname='tkpasman'
4 pkgver='2.2b'
5 pkgrel='1'
6 pkgdesc='A useful and reliable personal password manager, written in Tcl/Tk.'
7 arch=('i686' 'x86_64')
8 url='http://www.xs4all.nl/~wbsoft/linux/tkpasman.html'
9 license=('GPL2')
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')
19 build() {
20   cd "$srcdir/TkPasMan-$pkgver"
22   patch -i ../config.patch || return 1
23   patch -i ../Makefile.patch || return 1
25   make || return 1
26   make DESTDIR="$pkgdir" install || return 1
29 # vim:set ts=2 sw=2 et: