wok-next view xerces-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="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="devel@slitaz.org"
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="$PACKAGE-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 }