diff options
Diffstat (limited to 'community/pwmanager/PKGBUILD')
-rw-r--r-- | community/pwmanager/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/community/pwmanager/PKGBUILD b/community/pwmanager/PKGBUILD new file mode 100644 index 000000000..c13ce266a --- /dev/null +++ b/community/pwmanager/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 58627 2011-11-16 15:52:59Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: Vesa Kaihlavirta <vegai@iki.fi> +# Contributors: Pointer <pointer@linux-blog.de>, tmaynard <arch@toddmaynard.com> + +pkgname=pwmanager +pkgver=1.2.4 +pkgrel=5 +pkgdesc="With PwManager you can easily manage your passwords" +arch=('i686' 'x86_64') +url="http://passwordmanager.sourceforge.net/" +license=('GPL') +depends=('kdelibs3') +options=('!libtool') +source=(http://downloads.sourceforge.net/sourceforge/passwordmanager/$pkgname-$pkgver.tar.bz2 + build-fix.patch) +md5sums=('e6f720af9b325bc0e7ea20c9c5e6039f' + 'bcc412cb855cba4910e51920ae38a326') + +build() { + . /etc/profile.d/qt3.sh + export PATH=$QTDIR/bin:$PATH + cd $srcdir/$pkgname-$pkgver + + patch -p1 <$srcdir/build-fix.patch + + ./configure --prefix=/opt/kde --without-arts + make + make DESTDIR=$pkgdir install +} |