summaryrefslogtreecommitdiff
path: root/community-staging/postgis/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg047.dnsready.net>2011-07-04 23:11:10 +0000
committerroot <root@rshg047.dnsready.net>2011-07-04 23:11:10 +0000
commit9d2caacbc33de06407311a5da87e5d22e0266435 (patch)
treec0eb320a79d1e1943d2531e3fe3c1422367cb48d /community-staging/postgis/PKGBUILD
parent067b127a853780b2b4ae7236dcdaaf72396dfa86 (diff)
Mon Jul 4 23:11:10 UTC 2011
Diffstat (limited to 'community-staging/postgis/PKGBUILD')
-rw-r--r--community-staging/postgis/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/community-staging/postgis/PKGBUILD b/community-staging/postgis/PKGBUILD
new file mode 100644
index 000000000..0e5b5ca4c
--- /dev/null
+++ b/community-staging/postgis/PKGBUILD
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 50943 2011-07-03 10:15:49Z jelle $
+# 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.2
+pkgrel=2
+pkgdesc="Adds support for geographic objects to PostgreSQL"
+arch=('i686' 'x86_64')
+url="http://postgis.refractions.net/"
+license=('GPL')
+depends=('postgresql' 'proj' 'geos')
+changelog=$pkgname.changelog
+source=(http://postgis.refractions.net/download/$pkgname-$pkgver.tar.gz)
+md5sums=('772ec1d0f04d6800cd7e2420a97a7483')
+
+build() {
+ cd ${srcdir}/$pkgname-$pkgver
+
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd ${srcdir}/$pkgname-$pkgver
+
+ make DESTDIR=${pkgdir} install
+}