mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
622 B
Bash
22 lines
622 B
Bash
|
# $Id: PKGBUILD 2515 2009-09-19 12:56:35Z ibiru $
|
||
|
# Maintainer: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
|
||
|
# Contributor: William Rea <sillywilly@gmail.com>
|
||
|
|
||
|
pkgname=postgis
|
||
|
pkgver=1.4.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="Adds support for geographic objects to PostgreSQL"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://postgis.refractions.net"
|
||
|
license=('GPL')
|
||
|
depends=('postgresql>=8.4.1' 'proj' 'geos')
|
||
|
source=(http://postgis.refractions.net/download/$pkgname-$pkgver.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install
|
||
|
}
|
||
|
md5sums=('bc5b97d5399bd20ca90bfdf784ab6c33')
|