wok view xerces-c/receipt @ rev 9026

gtkperf: fix genpkg_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 03 22:08:34 2011 +0100 (2011-03-03)
parents bc51fc512c96
children b7319995b37e
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 &&
19 make -j 4 &&
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 }