# HG changeset patch # User Hans-G?nter Theisgen # Date 1555514880 -3600 # Node ID be444bbbf690f51b8e145c877587d695bfd395c7 # Parent 338d2ab24fb755b733f0cecd0c71ca986810c191 updated libsearpc and libsearpc-dev (3.0.2 -> 3.1.0) diff -r 338d2ab24fb7 -r be444bbbf690 libsearpc-dev/receipt --- a/libsearpc-dev/receipt Wed Apr 17 00:53:31 2019 -0400 +++ b/libsearpc-dev/receipt Wed Apr 17 16:28:00 2019 +0100 @@ -1,23 +1,24 @@ # SliTaz package receipt. PACKAGE="libsearpc-dev" -VERSION="3.0.2" +VERSION="3.1.0" CATEGORY="development" -SHORT_DESC="Devel headers and static lib for libsearpc." +SHORT_DESC="Development files for libsearpc." MAINTAINER="pankso@slitaz.org" LICENSE="GPL3" WEB_SITE="https://github.com/haiwen/libsearpc/" -HOST_ARCH="i486 arm" WANTED="libsearpc" DEPENDS="libsearpc pkg-config" +HOST_ARCH="i486 arm" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p ${fs}/usr/lib - cp -a ${install}/usr/include ${fs}/usr - cp -a ${install}/usr/lib/*.*a ${fs}/usr/lib - cp -a ${install}/usr/lib/pkgconfig ${fs}/usr/lib + + cp -a ${install}/usr/include ${fs}/usr + cp -a ${install}/usr/lib/*.*a ${fs}/usr/lib + cp -a ${install}/usr/lib/pkgconfig ${fs}/usr/lib } - diff -r 338d2ab24fb7 -r be444bbbf690 libsearpc/receipt --- a/libsearpc/receipt Wed Apr 17 00:53:31 2019 -0400 +++ b/libsearpc/receipt Wed Apr 17 16:28:00 2019 +0100 @@ -1,36 +1,40 @@ # SliTaz package receipt. PACKAGE="libsearpc" -VERSION="3.0.2" +VERSION="3.1.0" CATEGORY="network" SHORT_DESC="A simple and easy-to-use C language RPC framework." MAINTAINER="pankso@slitaz.org" LICENSE="GPL3" +WEB_SITE="https://github.com/haiwen/libsearpc/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://github.com/haiwen/libsearpc/" WGET_URL="https://github.com/haiwen/$PACKAGE/archive/v${VERSION}.tar.gz" + +DEPENDS="glib jansson python" +BUILD_DEPENDS="automake glib-dev jansson-dev libtool python-dev \ + python-simplejson" + HOST_ARCH="i486 arm" -DEPENDS="python glib jansson" -BUILD_DEPENDS="wget python-dev glib-dev jansson-dev python-simplejson \ -automake libtool" - # Rules to configure and make the package. compile_rules() { ./autogen.sh && - ./configure \ - --prefix=/usr \ - PYTHON=/usr/bin/python2 \ + ./configure \ + --prefix=/usr \ + PYTHON=/usr/bin/python2 \ $CONFIGURE_ARGS && - make -j 1 && make install + make -j 1 && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p ${fs}/usr/lib - cp -a ${install}/usr/bin ${fs}/usr - cp -a ${install}/usr/lib/*.so* ${fs}/usr/lib + + cp -a ${install}/usr/bin ${fs}/usr + cp -a ${install}/usr/lib/*.so* ${fs}/usr/lib cp -a ${install}/usr/lib/python* ${fs}/usr/lib }