mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
31 lines
903 B
Bash
31 lines
903 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: William Rea <sillywilly@gmail.com>
|
|
|
|
pkgname=jump-project
|
|
pkgver=1.1.2
|
|
pkgrel=3
|
|
pkgdesc="GUI application for viewing and mapping spatial data"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.jump-project.org/"
|
|
license=('GPL')
|
|
depends=('java-xerces2' 'junit')
|
|
source=(http://www.jump-project.org/downloads/jump/jump-1.1.2.zip \
|
|
jump)
|
|
md5sums=('6fc0a448ba99a64c75d3a561d5410112' '6eb112cde83e0e181b5e28d5223f1e00')
|
|
|
|
build() {
|
|
mkdir -p $startdir/pkg/usr/share/java/jump
|
|
#mkdir $startdir/pkg/usr/bin
|
|
mkdir -p $startdir/pkg/etc/jump/plugins
|
|
|
|
cd $startdir/src/
|
|
#provided by xerces2 package
|
|
rm lib/xerces*
|
|
rm lib/xml*
|
|
rm lib/junit*
|
|
mv lib/*.jar $startdir/pkg/usr/share/java/jump/
|
|
mv bin/workbench-properties.xml $startdir/pkg/etc/jump
|
|
|
|
mkdir $startdir/pkg/usr/share/jump-project
|
|
install -D -m755 ../jump $startdir/pkg/usr/bin/jump
|
|
}
|