diffxml-0.96B-1

This commit is contained in:
Jaroslav Lichtblau 2014-12-19 15:06:06 +01:00
commit cf5b2c6708
2 changed files with 34 additions and 0 deletions

14
.SRCINFO Normal file
View file

@ -0,0 +1,14 @@
pkgbase = diffxml
pkgdesc = Tools for comparing and patching XML files
pkgver = 0.96B
pkgrel = 1
url = http://diffxml.sourceforge.net
arch = any
license = GPL
makedepends = apache-ant
depends = java-runtime
source = http://sourceforge.net/projects/diffxml/files/diffxml/0.96%20BETA/diffxml-0.96B.tar.gz
md5sums = 9fb4bd8b2861d14edccc45ad143011be
pkgname = diffxml

20
PKGBUILD Normal file
View file

@ -0,0 +1,20 @@
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
pkgname=diffxml
pkgver=0.96B
pkgrel=1
pkgdesc="Tools for comparing and patching XML files"
arch=('any')
url="http://diffxml.sourceforge.net"
license=('GPL')
depends=('java-runtime')
makedepends=('apache-ant')
source=(http://sourceforge.net/projects/diffxml/files/$pkgname/0.96%20BETA/$pkgname-$pkgver.tar.gz)
md5sums=('9fb4bd8b2861d14edccc45ad143011be')
package() {
cd "${srcdir}"/$pkgname
ant -Dinstall.dir="${pkgdir}/usr" install
sed -i "s:/build/diffxml/pkg/diffxml/:/:g" "${pkgdir}"/usr/bin/{diffxml,patchxml}
}