diff options
Diffstat (limited to 'community/geos')
-rw-r--r-- | community/geos/PKGBUILD | 30 | ||||
-rw-r--r-- | community/geos/geos.changelog | 5 |
2 files changed, 35 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 +} diff --git a/community/geos/geos.changelog b/community/geos/geos.changelog new file mode 100644 index 000000000..d0a376568 --- /dev/null +++ b/community/geos/geos.changelog @@ -0,0 +1,5 @@ +2010-11-14 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release 3.2.2 + +2010-04-04 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release 3.2.1 |