Commit cdf203b1 authored by Seblu's avatar Seblu
Browse files

add gq-legacy package


git-svn-id: https://seblu.net/s/archpkg@57 02741741-5192-46b8-8916-7152b19231d9
parent 6e54ab12
Loading
Loading
Loading
Loading

gq-legagy/PKGBUILD

0 → 100644
+28 −0
Original line number Diff line number Diff line
# $Id$
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Gergely Tamas <dice@mfa.kfki.hu>

pkgname=gq-legacy
pkgver=1.0.1
pkgrel=1
pkgdesc="Interactive graphical LDAP browser"
url="http://sourceforge.net/projects/gqclient"
license=("GPL")
depends=('libxml2' 'gtk2' 'libgnome-keyring' 'libglade' 'libldap' 'libgpg-error' 'libgcrypt')
makedepends=('intltool' 'pkgconfig')
conflicts=('gq')
arch=('i686' 'x86_64')
install=gq.install
source=(http://downloads.sourceforge.net/sourceforge/gqclient/gq-$pkgver.tar.gz)
md5sums=('a20345edd6951891fcd8a4934431f3c3')

build() {
  cd $srcdir/gq-$pkgver
  ./configure --prefix=/usr --disable-debugging --disable-update-mimedb
  make
}

package() {
  cd $srcdir/gq-$pkgver
  make DESTDIR=$pkgdir install
}

gq-legagy/gq.install

0 → 100644
+11 −0
Original line number Diff line number Diff line
post_install() {
  update-mime-database usr/share/mime
}

post_upgrade() {
  post_install
}

post_remove() {
  post_install
}