wok view xalan-c/receipt @ rev 10134

Up: libevent to 2.0.11.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri May 20 17:28:46 2011 +0000 (2011-05-20)
parents ca1615e2cdc4
children 0e59484220c7
line source
1 # SliTaz package receipt.
3 PACKAGE="xalan-c"
4 VERSION="1.10.0-r705082"
5 CATEGORY="development"
6 SHORT_DESC="An XSLT processor for transforming XML documents into HTML, text, or other XML document types."
7 MAINTAINER="rcx@zoominternet.net"
8 DEPENDS="glibc-base gcc-lib-base xerces-c libcurl libcrypto icu"
9 TARBALL="Xalan-C_r705082-src.tar.gz"
10 WEB_SITE="http://xalan.apache.org/"
11 # Need to use the patched r705082 version on Gentoo's mirrors
12 # Normal WGET_URL would be "http://www.apache.org/dist/xml/$PACKAGE/source/$TARBALL"
13 WGET_URL="http://www.gtlib.gatech.edu/pub/gentoo/distfiles/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 mv c/* . && rm -r c
21 export XERCESCROOT=/usr
22 export XALANCROOT=$src
24 ./runConfigure -p linux -c gcc -x g++ -P /usr \
25 -C --build=$BUILD_HOST -C --host=$BUILD_HOST &&
26 make -j1 &&
27 make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
36 cp -a $_pkg/usr/bin $fs/usr
37 }