summaryrefslogtreecommitdiff
path: root/community/gen2shp/PKGBUILD
blob: dab5a18bc0c960524130d25f153732ccc860a421 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# $Id: PKGBUILD 112263 2014-05-30 19:19:25Z jelle $
# Maintainer:  Federico Cinelli <cinelli@aur.archlinux.org>
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org

pkgname=gen2shp
pkgver=0.3.1
pkgrel=9
pkgdesc='Converts ArcInfo generate format to shapefile format'
arch=('i686' 'x86_64')
url='http://www.intevation.de/~jan/gen2shp/'
license=('GPL')
depends=('glibc' 'shapelib')
source=("http://web.archive.org/web/20110716144136/http://intevation.de/~jan/gen2shp/$pkgname-$pkgver.tar.gz")
md5sums=('1cf9f1c2097825ef96290f7e9a7eb195')

build() {
  cd "$pkgname-$pkgver"

  # fix conflicting function names
  sed -i 's/getline/get_line/' gen2shp.c utils.c utils.h
  sed -i 's:libshp/::' gen2shp.c
  sed -i 's/-lshp gen2shp.c utils.o/gen2shp.c utils.o -lshp/' Makefile
  make CFLAGS="$CFLAGS"

}

package() {
  install -D "$pkgname-$pkgver/gen2shp" "$pkgdir/usr/bin/gens2shp"
}