summaryrefslogtreecommitdiff
path: root/community/gpsmanshp/PKGBUILD
blob: a34ddd3a9c19feaee9472d20d025a18dab3519da (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
30
31
32
33
34
35
36
37
# $Id: PKGBUILD 81604 2012-12-25 00:34:09Z foutrelis $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org

pkgname=gpsmanshp
pkgver=1.2.1
pkgrel=2
pkgdesc="A Tcl package to read and write shapefiles"
arch=('i686' 'x86_64')
url="http://gpsmanshp.sourceforge.net/"
license=('GPL')
depends=('glibc' 'shapelib' 'tcl')
source=("http://sourceforge.net/projects/${pkgname}/files/distr/${pkgname}_${pkgver}.tgz")
md5sums=('c2876d7f67c8215b46b336b5b859d49f')

build() {
  cd "${pkgname}_${pkgver}"

  mv Makefile8.5 Makefile
  sed -i -e "s:shapefil.h:libshp/shapefil.h:g" gpsmanshp.c

  install -d ${pkgdir}/usr/lib/

  # set install path
  sed -i -e "s|/usr/lib/tcl\$(TCLVERSION)|${pkgdir}/usr/lib/gpsmanshp|g" Makefile
  sed -i -e "s|tclsh\$(TCLVERSION)|tclsh|g" Makefile
  sed -i "s|package-8.3.tcl|/usr/lib/tcl8.6/package.tcl|g" Makefile
  sed -i "s|8.4|8.6|g" Makefile

  make
}

package() {
  cd "${pkgname}_${pkgver}"

  make install
}