wok view xerces-c/receipt @ rev 18106

Up pam (1.2.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 01 11:31:30 2015 +0200 (2015-06-01)
parents b7319995b37e
children 16dea996b9a3
line source
1 # SliTaz package receipt.
3 PACKAGE="xerces-c"
4 VERSION="3.1.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 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://xerces.apache.org/xerces-c"
11 WGET_URL="http://apache.osuosl.org/xerces/c/3/sources/$TARBALL"
13 DEPENDS="glibc-base gcc-lib-base libcurl libcrypto icu"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
20 ./configure $CONFIGURE_ARGS &&
21 make $MAKEFLAGS &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 cp -a $install/usr/bin $fs/usr
31 }