wok-current rev 21296
updated libsearpc and libsearpc-dev (3.0.2 -> 3.1.0)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Apr 17 16:28:00 2019 +0100 (2019-04-17) |
parents | 338d2ab24fb7 |
children | 5da5cfc71bb0 |
files | libsearpc-dev/receipt libsearpc/receipt |
line diff
1.1 --- a/libsearpc-dev/receipt Wed Apr 17 00:53:31 2019 -0400 1.2 +++ b/libsearpc-dev/receipt Wed Apr 17 16:28:00 2019 +0100 1.3 @@ -1,23 +1,24 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libsearpc-dev" 1.7 -VERSION="3.0.2" 1.8 +VERSION="3.1.0" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Devel headers and static lib for libsearpc." 1.11 +SHORT_DESC="Development files for libsearpc." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 LICENSE="GPL3" 1.14 WEB_SITE="https://github.com/haiwen/libsearpc/" 1.15 -HOST_ARCH="i486 arm" 1.16 1.17 WANTED="libsearpc" 1.18 DEPENDS="libsearpc pkg-config" 1.19 1.20 +HOST_ARCH="i486 arm" 1.21 + 1.22 # Rules to gen a SliTaz package suitable for Tazpkg. 1.23 genpkg_rules() 1.24 { 1.25 mkdir -p ${fs}/usr/lib 1.26 - cp -a ${install}/usr/include ${fs}/usr 1.27 - cp -a ${install}/usr/lib/*.*a ${fs}/usr/lib 1.28 - cp -a ${install}/usr/lib/pkgconfig ${fs}/usr/lib 1.29 + 1.30 + cp -a ${install}/usr/include ${fs}/usr 1.31 + cp -a ${install}/usr/lib/*.*a ${fs}/usr/lib 1.32 + cp -a ${install}/usr/lib/pkgconfig ${fs}/usr/lib 1.33 } 1.34 -
2.1 --- a/libsearpc/receipt Wed Apr 17 00:53:31 2019 -0400 2.2 +++ b/libsearpc/receipt Wed Apr 17 16:28:00 2019 +0100 2.3 @@ -1,36 +1,40 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libsearpc" 2.7 -VERSION="3.0.2" 2.8 +VERSION="3.1.0" 2.9 CATEGORY="network" 2.10 SHORT_DESC="A simple and easy-to-use C language RPC framework." 2.11 MAINTAINER="pankso@slitaz.org" 2.12 LICENSE="GPL3" 2.13 +WEB_SITE="https://github.com/haiwen/libsearpc/" 2.14 + 2.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.16 -WEB_SITE="https://github.com/haiwen/libsearpc/" 2.17 WGET_URL="https://github.com/haiwen/$PACKAGE/archive/v${VERSION}.tar.gz" 2.18 + 2.19 +DEPENDS="glib jansson python" 2.20 +BUILD_DEPENDS="automake glib-dev jansson-dev libtool python-dev \ 2.21 + python-simplejson" 2.22 + 2.23 HOST_ARCH="i486 arm" 2.24 2.25 -DEPENDS="python glib jansson" 2.26 -BUILD_DEPENDS="wget python-dev glib-dev jansson-dev python-simplejson \ 2.27 -automake libtool" 2.28 - 2.29 # Rules to configure and make the package. 2.30 compile_rules() 2.31 { 2.32 ./autogen.sh && 2.33 - ./configure \ 2.34 - --prefix=/usr \ 2.35 - PYTHON=/usr/bin/python2 \ 2.36 + ./configure \ 2.37 + --prefix=/usr \ 2.38 + PYTHON=/usr/bin/python2 \ 2.39 $CONFIGURE_ARGS && 2.40 - make -j 1 && make install 2.41 + make -j 1 && 2.42 + make install 2.43 } 2.44 2.45 # Rules to gen a SliTaz package suitable for Tazpkg. 2.46 genpkg_rules() 2.47 { 2.48 mkdir -p ${fs}/usr/lib 2.49 - cp -a ${install}/usr/bin ${fs}/usr 2.50 - cp -a ${install}/usr/lib/*.so* ${fs}/usr/lib 2.51 + 2.52 + cp -a ${install}/usr/bin ${fs}/usr 2.53 + cp -a ${install}/usr/lib/*.so* ${fs}/usr/lib 2.54 cp -a ${install}/usr/lib/python* ${fs}/usr/lib 2.55 }