summaryrefslogtreecommitdiff
path: root/community/shapelib
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-03-04 00:03:49 -0800
committerroot <root@rshg054.dnsready.net>2013-03-04 00:03:49 -0800
commit3a8d026e8e859ff4c9aa813d5f1eb2afa5663e78 (patch)
tree48288f077555b04e1dd7cec1e637aeb94a322f0c /community/shapelib
parent945c9cd1e94fab87653f84598812dec707843d26 (diff)
Mon Mar 4 00:03:48 PST 2013
Diffstat (limited to 'community/shapelib')
-rw-r--r--community/shapelib/PKGBUILD29
1 files changed, 14 insertions, 15 deletions
diff --git a/community/shapelib/PKGBUILD b/community/shapelib/PKGBUILD
index c421ae23a..fd1dd0740 100644
--- a/community/shapelib/PKGBUILD
+++ b/community/shapelib/PKGBUILD
@@ -1,32 +1,31 @@
-# $Id: PKGBUILD 67779 2012-03-14 11:48:39Z giovanni $
-# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+# $Id: PKGBUILD 85552 2013-03-03 03:16:05Z cinelli $
+# Maintainer: Federico Cinelli <cinelli@aur.archlinux.org>
+# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Bob Finch <w9ya@arrl.net>
pkgname=shapelib
-pkgver=1.2.10
-pkgrel=5
+pkgver=1.3.0
+pkgrel=1
pkgdesc='simple C API for reading and writing ESRI Shapefiles'
arch=('i686' 'x86_64')
url='http://shapelib.maptools.org/'
license=('LGPL' 'MIT')
options=('!libtool')
-source=("http://dl.maptools.org/dl/${pkgname}/${pkgname}-${pkgver}.tar.gz"
- 'LICENSE')
-md5sums=('4d96bd926167193d27bf14d56e2d484e'
- '431dfe7afb1d2c082682ecfcc9ee7a34')
+source=("http://download.osgeo.org/$pkgname/$pkgname-$pkgver.tar.gz"
+ "LICENSE")
+sha256sums=('23d474016158ab5077db2f599527631706ba5c0dc7c4178a6a1d685bb014f68f'
+ '67e45b04045e27a9d6f64f92b295831b8739b32668ce497d3fa02999e349a789')
build() {
- cd ${pkgname}-${pkgver}
+ cd "$pkgname-$pkgver"
- sed -i -e s:'-O2':"${CFLAGS}": Makefile
make lib
}
package() {
- cd ${pkgname}-${pkgver}
+ cd "$pkgname-$pkgver"
- sed -i -e s:/usr/local:${pkgdir}/usr: Makefile
- sed -i -e s:/usr/bin/install:/bin/install: Makefile
- make lib_install
- install -D -m644 ${srcdir}/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+ install -d "$pkgdir/usr/lib" "$pkgdir/usr/include"
+ make PREFIX="$pkgdir/usr lib_install"
+ install -D -m644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}