wok-next annotate xmlrpc-c/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents fc0a0ab57dc4
children
rev   line source
al@19978 1 # SliTaz package receipt v2.
pascal@10821 2
pascal@10821 3 PACKAGE="xmlrpc-c"
al@19978 4 VERSION="1.39.12"
pascal@10821 5 CATEGORY="network"
al@19978 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/"
al@19978 10
pascal@10821 11 TARBALL="$PACKAGE-$VERSION.tgz"
pascal@10821 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@15106 13
al@19978 14 BUILD_DEPENDS="automake texinfo curl-dev libxml2-dev"
al@21020 15 SPLIT="$PACKAGE-dev"
pascal@10821 16
al@19978 17 compile_rules() {
al@19978 18 # this file appeared later (with this content), but is absent when it required
al@19978 19 echo ' -Isrcdir/lib/curl_transport' > src/libxmlrpc_client.cflags
al@19978 20
al@19978 21 ./configure \
al@19978 22 --enable-libxml2-backend \
al@19978 23 --disable-cgi-server \
al@19978 24 --disable-libwww-client \
al@19978 25 --disable-wininet-client \
al@19978 26 --enable-cplusplus \
pascal@10821 27 $CONFIGURE_ARGS &&
al@21020 28 make -j1 &&
al@21020 29 make DESTDIR=$install install
pascal@10821 30 }
pascal@10821 31
al@19978 32 genpkg_rules() {
al@19978 33 case $PACKAGE in
al@19978 34 xmlrpc-c) copy @std;;
al@19978 35 *-dev) copy @dev;;
al@19978 36 esac
pascal@10821 37 }