mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
19 lines
521 B
Bash
19 lines
521 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
|
||
|
pkgname=jump-roadmatcher
|
||
|
pkgver=1.4
|
||
|
pkgrel=1
|
||
|
pkgdesc="Jump Project plugin that performs conflation between linear and road networks"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.jump-project.org/"
|
||
|
license=('GPL')
|
||
|
depends=('jump-project')
|
||
|
source=(http://www.jump-project.org/assets/roadmatcher-1.4.zip)
|
||
|
md5sums=('5e4176ca8de5faf5da477649708644ce')
|
||
|
|
||
|
build() {
|
||
|
mkdir -p $startdir/pkg/etc/jump/plugins
|
||
|
cd $startdir/src/
|
||
|
mv lib/ext/roadmatcher $startdir/pkg/etc/jump/plugins
|
||
|
}
|