mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
20 lines
607 B
Bash
20 lines
607 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
|
|
|
|
pkgname=gen2shp
|
|
pkgver=0.3.1
|
|
pkgrel=4
|
|
pkgdesc="Converts ArcInfo generate format to shapefile format"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.intevation.de/~jan/gen2shp/"
|
|
license=("GPL")
|
|
depends=('shapelib')
|
|
source=(http://intevation.de/%7Ejan/gen2shp/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('1cf9f1c2097825ef96290f7e9a7eb195')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
make || return 1
|
|
install -D -m755 $startdir/src/$pkgname-$pkgver/gen2shp $startdir/pkg/usr/bin/gens2shp
|
|
}
|
|
# vim:syntax=sh
|