diff options
Diffstat (limited to 'community/gq/PKGBUILD')
-rw-r--r-- | community/gq/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/gq/PKGBUILD b/community/gq/PKGBUILD new file mode 100644 index 000000000..f5ab49586 --- /dev/null +++ b/community/gq/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 18516 2010-06-07 11:11:04Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Gergely Tamas <dice@mfa.kfki.hu> + +pkgname=gq +pkgver=1.3.4 +pkgrel=1 +pkgdesc="interactive graphical LDAP browser" +url="http://sourceforge.net/projects/gqclient" +license=("GPL") +depends=('libxml2' 'gtk2' 'libgnome-keyring' 'libglade' 'libldap>=2.4.18' 'libgpg-error' 'libgcrypt') +makedepends=('intltool' 'pkgconfig') +arch=('i686' 'x86_64') +install=gq.install +source=(http://downloads.sourceforge.net/sourceforge/gqclient/$pkgname-$pkgver.tar.gz) +md5sums=('d7b1e183a3ecbd77aceea02d27f36b3e') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr --disable-debugging --disable-update-mimedb + make || return 1 + make DESTDIR=$pkgdir install +} |