wok view xmlrpc-c/receipt @ rev 11077

Up: cairo-dock-plugins to 2.4.0~2.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Oct 17 01:46:47 2011 +0000 (2011-10-17)
parents
children 137749e1bd77
line source
1 # SliTaz package receipt.
3 PACKAGE="xmlrpc-c"
4 VERSION="1.16.35"
5 CATEGORY="network"
6 SHORT_DESC="A lightweight RPC library based on XML and HTTP."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WEB_SITE="http://xmlrpc-c.sourceforge.net/"
9 TARBALL="$PACKAGE-$VERSION.tgz"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
11 DEPENDS="gcc-lib-base"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }