wok-next view xalan-c/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents e9b3d0cd4c89
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xalan-c"
4 VERSION="1.11"
5 CATEGORY="development"
6 SHORT_DESC="An XSLT processor for transforming XML documents into HTML, text, \
7 or other XML document types"
8 MAINTAINER="devel@slitaz.org"
9 LICENSE="Apache"
10 WEB_SITE="http://xalan.apache.org/"
12 TARBALL="xalan_c-$VERSION-src.tar.gz"
13 WGET_URL="http://www.eu.apache.org/dist/xalan/xalan-c/sources/$TARBALL"
15 BUILD_DEPENDS="xerces-c-dev"
16 SPLIT="$PACKAGE-dev"
18 compile_rules() {
19 export XERCESCROOT=/usr
20 export XALANCROOT=$src/c
21 cd c
23 ./runConfigure \
24 -p linux \
25 -c gcc \
26 -x g++ \
27 -P /usr \
28 -C --build=$HOST_SYSTEM \
29 -C --host=$HOST_SYSTEM &&
30 make -j1 &&
31 make install
32 }
34 genpkg_rules() {
35 case $PACKAGE in
36 xalan-c)
37 copy @std
38 DEPENDS="xerces-c"
39 ;;
40 *-dev)
41 copy @dev
42 ;;
43 esac
44 }