summaryrefslogtreecommitdiff
path: root/community/postgis/PKGBUILD
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-08-27 12:44:19 +0200
committerMichał Masłowski <mtjm@mtjm.eu>2013-08-27 12:44:19 +0200
commit830afd54d0d990fdb982292bed4c97f577dc195d (patch)
tree5c081214c4d28eae5e46c33094131ecc555b4a8f /community/postgis/PKGBUILD
parent06dc337f60287526f4db95ce79a2ea506023bffa (diff)
parent5ea071a53492ec9512f8d08a8b8ff8e08499209d (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/collectd/PKGBUILD community/erlang/PKGBUILD community/fcitx-mozc/PKGBUILD community/libgexiv2/PKGBUILD community/monica/PKGBUILD community/neatx/PKGBUILD community/qstardict/PKGBUILD community/shell-fm/PKGBUILD core/isl/PKGBUILD extra/kdeadmin/PKGBUILD extra/kdenetwork/PKGBUILD extra/kdesdk/PKGBUILD extra/kdetoys/PKGBUILD extra/pkgfile/PKGBUILD extra/pyqt4/PKGBUILD extra/sip/PKGBUILD extra/sqlite/PKGBUILD
Diffstat (limited to 'community/postgis/PKGBUILD')
-rw-r--r--community/postgis/PKGBUILD24
1 files changed, 10 insertions, 14 deletions
diff --git a/community/postgis/PKGBUILD b/community/postgis/PKGBUILD
index 17214559a..0761f81cd 100644
--- a/community/postgis/PKGBUILD
+++ b/community/postgis/PKGBUILD
@@ -1,36 +1,32 @@
-# $Id: PKGBUILD 92821 2013-06-15 13:40:37Z jlichtblau $
+# $Id: PKGBUILD 96248 2013-08-22 17:02:31Z alucryd $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=postgis
-pkgver=2.0.3
+pkgver=2.1.0
pkgrel=1
pkgdesc="Adds support for geographic objects to PostgreSQL"
arch=('i686' 'x86_64' 'mips64el')
url="http://postgis.net/"
license=('GPL')
-depends=('postgresql>=9.2' 'postgresql<9.3' 'proj' 'geos' 'gdal' 'json-c' 'libxml2')
+depends=('postgresql' 'gdal' 'json-c')
changelog=$pkgname.changelog
options=('!libtool')
source=(http://download.osgeo.org/postgis/source/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('7f865a6fdf19afed7d2f3e7178cd504f7254a9e96f2ce6a07d0ea19edc1668a0')
+sha256sums=('fc00481aec904661f3eb11da4305b1666f2040c28b0651de7eac6c22f217b26c')
build() {
- cd ${srcdir}/${pkgname}-${pkgver}
-
- ./configure --prefix=/usr
- make
+ cd ${pkgname}-${pkgver}
- # Build utils (FS#25836)
- cd utils
+ ./configure --prefix=/usr
make
}
package() {
- cd ${srcdir}/${pkgname}-${pkgver}
- make DESTDIR=${pkgdir} install
+ cd ${pkgname}-${pkgver}
- cd utils
- make DESTDIR=${pkgdir} install
+ make DESTDIR="${pkgdir}" install
}
+
+# vim: ts=2 sw=2 et: