PKGBUILDs/community/xalan-c/PKGBUILD
2009-10-09 21:15:33 -05:00

24 lines
721 B
Bash

# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Roman Kyrylych <Roman.Kyrylych@gmail.com>
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=xalan-c
pkgver=1.10
pkgrel=2
pkgdesc="A XSLT processor for transforming XML documents"
arch=('i686' 'x86_64')
url="http://xml.apache.org/xalan-c"
license=('APACHE')
depends=('xerces-c')
options=('!makeflags')
source=(http://www.axint.net/apache/xml/xalan-c/source/Xalan-C_1_10_0-src.tar.gz)
md5sums=('0a3fbb535885531cc544b07a2060bfb1')
build() {
export XALANCROOT=$startdir/src/xml-xalan/c
cd $startdir/src/xml-xalan/c
./runConfigure -p linux -c gcc -x g++ -P/usr
#./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
}