mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
23 lines
600 B
Bash
23 lines
600 B
Bash
# $Id: PKGBUILD 2491 2009-09-19 11:54:33Z ibiru $
|
|
# Maintainer: Douglas Soares de Andrade <dsandrade@gmail.com>
|
|
|
|
pkgname=kpogre
|
|
pkgver=3.0.0
|
|
pkgrel=2
|
|
pkgdesc="Postgresql GUI frontend for KDE"
|
|
arch=('i686' 'x86_64')
|
|
url="http://kpogre.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('kdelibs3' 'libpqxx')
|
|
source=(http://downloads.sourceforge.net/sourceforge/kpogre/$pkgname-$pkgver.tar.gz)
|
|
options=('libtool')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/opt/kde --without-arts
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|
|
|
|
md5sums=('a6e30a037af02af82cf41714af789168')
|