summaryrefslogtreecommitdiffstats
path: root/test/gpsbabel/Pkgfile
blob: 194f2d792ae4ecdeb75560cc097e4a95e74a5c86 (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
# Description: Reads, writes, and manipulates GPS waypoints in a variety of formats 
# URL: http://www.gpsbabel.org
# Maintainer: NuTyX core team
# Packager: lesibel at free dot fr
# Depends on: libusb, expat

name=gpsbabel
version=1.3.6
release=1
source=(http://www.gpsbabel.org/plan9.php?dl=gpsbabel-$version.tar.gz \
  exeext.patch)

build() {
  cd gpsbabel-$version
  mkdir -p $PKG/usr/bin
  ./configure --prefix=/usr
  patch -Np0 -i ../exeext.patch
  #sed -i 's|/usr/local|/usr|g' Makefile
  #sed -i 's|$(INSTALL_TARGETDIR)/bin|$(DESTDIR)$(INSTALL_TARGETDIR)/bin|g' Makefile

  make
  make DESTDIR=$PKG install

  # Header install
  mkdir -p $PKG/usr/include/gpsbabel
  cp {defs.h,queue.h,gbtypes.h,filterdefs.h,cet.h,cet_util.h,garmin_tables.h} \
     $PKG/usr/include/gpsbabel
}