diff options
author | root <root@rshg054.dnsready.net> | 2012-06-02 00:01:53 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-06-02 00:01:53 +0000 |
commit | 211709a2f09bd677aa1deac0dc82fde6ce1c8626 (patch) | |
tree | bd95688134860851652ff3d47f376702917f1b76 /community/postgis | |
parent | 7087de492f6effbd08f6b644ce85d1b1ea58fb14 (diff) |
Sat Jun 2 00:01:53 UTC 2012
Diffstat (limited to 'community/postgis')
-rw-r--r-- | community/postgis/PKGBUILD | 19 | ||||
-rw-r--r-- | community/postgis/postgis.changelog | 7 |
2 files changed, 20 insertions, 6 deletions
diff --git a/community/postgis/PKGBUILD b/community/postgis/PKGBUILD index e04bd4d30..39464ea8e 100644 --- a/community/postgis/PKGBUILD +++ b/community/postgis/PKGBUILD @@ -1,29 +1,36 @@ -# $Id: PKGBUILD 57370 2011-10-26 14:27:28Z jlichtblau $ +# $Id: PKGBUILD 71631 2012-05-31 14:23:54Z andrea $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org # Contributor: William Rea <sillywilly@gmail.com> pkgname=postgis -pkgver=1.5.3 +pkgver=2.0.0 pkgrel=2 pkgdesc="Adds support for geographic objects to PostgreSQL" arch=('i686' 'x86_64') -url="http://postgis.refractions.net/" +url="http://postgis.org/" license=('GPL') -depends=('postgresql' 'proj' 'geos') +depends=('postgresql' 'gdal' 'json-c') changelog=$pkgname.changelog -source=(http://postgis.refractions.net/download/${pkgname}-${pkgver}.tar.gz) -sha256sums=('a2334f8b229446c0497d48a430a40152a3b71a5da02f414a0340a0a025d416cf') +options=('!libtool') +source=("http://postgis.org/download/${pkgname}-${pkgver}.tar.gz") +sha256sums=('12179e24e348421c60c501590fda25bd349e2f697003958d9493f5c91b280081') 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 index 16f9b925d..13d851351 100644 --- a/community/postgis/postgis.changelog +++ b/community/postgis/postgis.changelog @@ -1,3 +1,10 @@ +2012-05-31 Andrea Scarpino <andrea@archlinux.org> + * Add JSON-C support + * Build utils (FS#25836) + +2012-05-31 Andrea Scarpino <andrea@archlinux.org> + * Update to major release 2.0.0-1 + 2011-10-26 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> * FS#26159 fix in postgis-1.5.3-2 |