mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
743 B
Bash
22 lines
743 B
Bash
# $Id: PKGBUILD 2594 2009-09-19 17:23:41Z ibiru $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: Gergely Tamas <dice@mfa.kfki.hu>
|
|
|
|
pkgname=gq
|
|
pkgver=1.2.3
|
|
pkgrel=2
|
|
pkgdesc="interactive graphical LDAP browser"
|
|
url="http://biot.com/gq/"
|
|
license=("GPL")
|
|
depends=('libxml2' 'gtk2' 'gnome-keyring' 'libglade' 'libldap>=2.4.18' 'libgpg-error' 'libgcrypt')
|
|
makedepends=('intltool' 'pkgconfig')
|
|
arch=('i686' 'x86_64')
|
|
source=(http://downloads.sourceforge.net/sourceforge/gqclient/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('c4b40f095961da936abfc8f42d57e4fe')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr --disable-debugging --disable-update-mimedb
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|