contrib/xalan-c/Pkgfile

24 lines
691 B
Plaintext
Raw Normal View History

2007-05-15 21:32:38 +02:00
# Description: XSLT processor for transforming XML documents into HTML, text, or other XML document types.
# URL: http://xml.apache.org/xalan-c/
2009-10-26 08:40:04 +01:00
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Jose V Beneyto, sepen at crux dot nu
2007-05-15 21:32:38 +02:00
# Depends on: xerces-c
name=xalan-c
version=1.10.0
2009-10-26 08:40:04 +01:00
release=3
source=(http://www.apache.org/dist/xml/${name}/Xalan-C_1_10_0-src.tar.gz \
xalandomstring.hpp.patch)
2007-05-15 21:32:38 +02:00
build() {
patch -p0 -i $SRC/xalandomstring.hpp.patch
2007-05-15 21:32:38 +02:00
export XALANCROOT=$SRC/xml-xalan/c
cd ${XALANCROOT}
autoconf
./runConfigure -P/usr \
-plinux -cgcc -xg++ -minmem -rpthread
2009-10-26 08:40:04 +01:00
make -j1 CXXFLAGS="$CXXFLAGS"
2007-05-15 21:32:38 +02:00
make DESTDIR=${PKG} install
unset XALANCROOT
}