contrib/xalan-c/Pkgfile

26 lines
616 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
2013-03-01 15:11:55 +01:00
version=1.11
release=1
source=(http://www.apache.org/dist/xalan/$name/sources/xalan_c-$version-src.tar.gz)
2007-05-15 21:32:38 +02:00
build() {
2013-03-01 15:11:55 +01:00
cd $name-$version/c
export XALANCROOT="$(pwd)"
2007-05-15 21:32:38 +02:00
autoconf
./runConfigure -P/usr \
-plinux -cgcc -xg++ -minmem -rpthread
2013-03-01 15:11:55 +01:00
2009-10-26 08:40:04 +01:00
make -j1 CXXFLAGS="$CXXFLAGS"
2013-03-01 15:11:55 +01:00
make DESTDIR=$PKG install
2007-05-15 21:32:38 +02:00
unset XALANCROOT
}