wok view xerces-c/receipt @ rev 12099

sarg-php: Fix perm
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Mar 11 02:56:40 2012 +0100 (2012-03-11)
parents 3e5f4a16c6dd
children eb8067417980
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 DEPENDS="glibc-base gcc-lib-base libcurl libcrypto icu"
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 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
18 ./configure $CONFIGURE_ARGS &&
19 make $MAKEFLAGS &&
20 make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 cp -a $_pkg/usr/bin $fs/usr
30 }