diff options
Diffstat (limited to 'community/geos/PKGBUILD')
-rw-r--r-- | community/geos/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/community/geos/PKGBUILD b/community/geos/PKGBUILD new file mode 100644 index 000000000..699ee17f6 --- /dev/null +++ b/community/geos/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 32533 2010-11-14 16:11:41Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org +# Contributor: William Rea <sillywilly@gmail.com> + +pkgname=geos +pkgver=3.2.2 +pkgrel=1 +pkgdesc="A C++ port of the Java Topology Suite" +arch=('i686' 'x86_64') +url="http://trac.osgeo.org/geos/" +license=('LGPL') +depends=('gcc-libs') +options=('!libtool') +changelog=$pkgname.changelog +source=(http://download.osgeo.org/${pkgname}/${pkgname}-${pkgver}.tar.bz2) +md5sums=('c5d264acac22fe7720f85dadc1fc17c6') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install +} |