diff options
author | root <root@rshg047.dnsready.net> | 2011-07-06 23:10:44 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-07-06 23:10:44 +0000 |
commit | b215b5e985b9310dff8d992510f12a87141fe7cb (patch) | |
tree | bc81c9c0c02ab9a4d6ee15e553850141b8d46f94 /community/postgis/PKGBUILD | |
parent | 9d2caacbc33de06407311a5da87e5d22e0266435 (diff) |
Wed Jul 6 23:10:44 UTC 2011
Diffstat (limited to 'community/postgis/PKGBUILD')
-rw-r--r-- | community/postgis/PKGBUILD | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/community/postgis/PKGBUILD b/community/postgis/PKGBUILD index dbea8cc90..a8d576d6b 100644 --- a/community/postgis/PKGBUILD +++ b/community/postgis/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 31335 2010-10-30 06:31:18Z jlichtblau $ +# $Id: PKGBUILD 51024 2011-07-04 13:40:25Z stephane $ # 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 +pkgver=1.5.3 pkgrel=1 pkgdesc="Adds support for geographic objects to PostgreSQL" arch=('i686' 'x86_64') @@ -12,18 +12,18 @@ 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') +source=(http://postgis.refractions.net/download/${pkgname}-${pkgver}.tar.gz) +md5sums=('05a61df5e1b78bf51c9ce98bea5526fc') build() { - cd ${srcdir}/$pkgname-$pkgver + cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr make } package() { - cd ${srcdir}/$pkgname-$pkgver + cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR=${pkgdir} install + make DESTDIR="${pkgdir}" install } |