wok-next view xerces-c/receipt @ rev 20619

Up / fix build: wvstreams, xalan-c, xerces-c
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Apr 21 15:29:57 2018 +0300 (2018-04-21)
parents 10df65db91ad
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xerces-c"
4 VERSION="3.2.1"
5 CATEGORY="development"
6 SHORT_DESC="A validating XML parser written in a portable subset of C++"
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="Apache"
9 WEB_SITE="http://xerces.apache.org/xerces-c/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://apache.osuosl.org/xerces/c/3/sources/$TARBALL"
14 SPLIT="xerces-c-dev"
16 compile_rules() {
17 case $ARCH in
18 i?86) ARCH_ARGS='--disable-sse2';;
19 *) ARCH_ARGS='';;
20 esac
22 ./configure \
23 $ARCH_ARGS \
24 $CONFIGURE_ARGS &&
25 fix libtool &&
26 make $MAKEFLAGS &&
27 make install
28 }
30 genpkg_rules() {
31 case $PACKAGE in
32 xerces-c) copy @std;;
33 *-dev) copy @dev;;
34 esac
35 }