mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
20 lines
729 B
Bash
20 lines
729 B
Bash
|
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
|
||
|
# Contributor: Simon Lipp <sloonz+aur@gmail.com>
|
||
|
|
||
|
pkgname=java-xmlgraphics-commons
|
||
|
pkgver=1.3.1
|
||
|
pkgrel=3
|
||
|
pkgdesc="Common components between FOP and Batik"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://xmlgraphics.apache.org/commons/"
|
||
|
license=(APACHE)
|
||
|
depends=('java-runtime')
|
||
|
source=('http://apache.crihan.fr/dist/xmlgraphics/commons/binaries/xmlgraphics-commons-1.3.1-bin.tar.gz')
|
||
|
md5sums=('037c91e4b745fd6eb0acfc1e9192fce9')
|
||
|
|
||
|
build() {
|
||
|
install -d $pkgdir/usr/share/java/xmlgraphics-commons/ || return 1
|
||
|
install --mode=644 $srcdir/xmlgraphics-commons-1.3.1/build/xmlgraphics-commons-1.3.1.jar \
|
||
|
$pkgdir/usr/share/java/xmlgraphics-commons/xmlgraphics-commons.jar || return 1
|
||
|
}
|