wok annotate xmlrpc-c/receipt @ rev 20615

Update varka
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Dec 21 20:44:57 2018 +0100 (2018-12-21)
parents 7d672a2330b8
children ad86373a4a8c
rev   line source
pascal@10821 1 # SliTaz package receipt.
pascal@10821 2
pascal@10821 3 PACKAGE="xmlrpc-c"
pankso@16477 4 VERSION="1.25.28"
pascal@10821 5 CATEGORY="network"
pascal@10821 6 SHORT_DESC="A lightweight RPC library based on XML and HTTP."
pascal@10821 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15601 8 LICENSE="BSD"
pascal@10821 9 WEB_SITE="http://xmlrpc-c.sourceforge.net/"
pascal@10821 10 TARBALL="$PACKAGE-$VERSION.tgz"
pascal@10821 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pankso@16477 12 #HOST_ARCH="i486 arm"
pascal@15106 13
pascal@10821 14 DEPENDS="gcc-lib-base"
pascal@10821 15
pascal@10821 16 # Rules to configure and make the package.
pascal@10821 17 compile_rules()
pascal@10821 18 {
pascal@15106 19 find -name 'Makefile*' | sed 's/Makefile.*/depend.mk/' | \
pascal@15106 20 xargs touch -d 197001010000
pankso@16477 21 ./configure --prefix=/usr \
pascal@10821 22 $CONFIGURE_ARGS &&
pascal@16489 23 make -j 1 &&
pascal@10821 24 make DESTDIR=$DESTDIR install
pascal@10821 25 }
pascal@10821 26
pascal@10821 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@10821 28 genpkg_rules()
pascal@10821 29 {
pascal@10821 30 mkdir -p $fs/usr/lib
pascal@15106 31 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@10821 32 }