From 7a65a910b77ad191d69881098c47f9b0c852d92e Mon Sep 17 00:00:00 2001 From: root Date: Tue, 13 Aug 2013 01:33:19 -0700 Subject: Tue Aug 13 01:31:08 PDT 2013 --- community/postgis/PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++ community/postgis/postgis.changelog | 25 +++++++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 community/postgis/PKGBUILD create mode 100644 community/postgis/postgis.changelog (limited to 'community/postgis') diff --git a/community/postgis/PKGBUILD b/community/postgis/PKGBUILD new file mode 100644 index 000000000..192425090 --- /dev/null +++ b/community/postgis/PKGBUILD @@ -0,0 +1,36 @@ +# $Id: PKGBUILD 92821 2013-06-15 13:40:37Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau +# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org +# Contributor: William Rea + +pkgname=postgis +pkgver=2.0.3 +pkgrel=1 +pkgdesc="Adds support for geographic objects to PostgreSQL" +arch=('i686' 'x86_64') +url="http://postgis.net/" +license=('GPL') +depends=('postgresql>=9.2' 'postgresql<9.3' 'proj' 'geos' 'gdal' 'json-c' 'libxml2') +changelog=$pkgname.changelog +options=('!libtool') +source=(http://download.osgeo.org/postgis/source/${pkgname}-${pkgver}.tar.gz) +sha256sums=('7f865a6fdf19afed7d2f3e7178cd504f7254a9e96f2ce6a07d0ea19edc1668a0') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + ./configure --prefix=/usr + make + + # Build utils (FS#25836) + cd utils + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install + + cd utils + make DESTDIR=${pkgdir} install +} diff --git a/community/postgis/postgis.changelog b/community/postgis/postgis.changelog new file mode 100644 index 000000000..1e53db33a --- /dev/null +++ b/community/postgis/postgis.changelog @@ -0,0 +1,25 @@ +2013-06-15 Jaroslav Lichtblau + * postgis-2.0.3-1 + +2013-01-05 Jaroslav Lichtblau + * postgis-2.0.2-1 + +2012-09-24 Dan McGee + * Rebuild for PostgreSQL 9.2.x + * Update to minor release 2.0.1 + +2012-05-31 Andrea Scarpino + * Add JSON-C support + * Build utils (FS#25836) + +2012-05-31 Andrea Scarpino + * Update to major release 2.0.0-1 + +2011-10-26 Jaroslav Lichtblau + * FS#26159 fix in postgis-1.5.3-2 + +2010-10-30 Jaroslav Lichtblau + * Update to major release 1.5.2 + +2010-03-21 Jaroslav Lichtblau + * Update to major release 1.5.1 -- cgit v1.2.3-54-g00ecf