# HG changeset patch # User Hans-G?nter Theisgen # Date 1647078695 -3600 # Node ID 6ee95ce8dd55b281c6900fed8f10d33e177b166c # Parent 57462eac4c410fd5893aa7f2f061bc7ea7349d38 updated jansson and jansson-dev (2.12 -> 2.14) diff -r 57462eac4c41 -r 6ee95ce8dd55 jansson-dev/receipt --- a/jansson-dev/receipt Sat Mar 12 10:39:47 2022 +0100 +++ b/jansson-dev/receipt Sat Mar 12 10:51:35 2022 +0100 @@ -1,17 +1,18 @@ # SliTaz package receipt. PACKAGE="jansson-dev" -VERSION="2.12" +VERSION="2.14" CATEGORY="x-window" -SHORT_DESC="Jansson static libs and include headers" +SHORT_DESC="Jansson static libraries and include headers." MAINTAINER="pankso@slitaz.org" LICENSE="GPL2" -WEB_SITE="http://www.digip.org/jansson/" +WEB_SITE="https://www.digip.org/jansson/" + +DEPENDS="jansson" +WANTED="jansson" + HOST_ARCH="i486 arm" -WANTED="jansson" -DEPENDS="jansson" - # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { diff -r 57462eac4c41 -r 6ee95ce8dd55 jansson/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/jansson/description.txt Sat Mar 12 10:51:35 2022 +0100 @@ -0,0 +1,8 @@ +Jansson is a C library for encoding, decoding and manipulating JSON data. +Its main features and design principles are: + +* Simple and intuitive API and data model +* Comprehensive documentation +* No dependencies on other libraries +* Full Unicode support (UTF-8) +* Extensive test suite diff -r 57462eac4c41 -r 6ee95ce8dd55 jansson/receipt --- a/jansson/receipt Sat Mar 12 10:39:47 2022 +0100 +++ b/jansson/receipt Sat Mar 12 10:51:35 2022 +0100 @@ -1,18 +1,20 @@ # SliTaz package receipt. PACKAGE="jansson" -VERSION="2.12" +VERSION="2.14" CATEGORY="x-window" SHORT_DESC="C library for encoding, decoding and manipulating JSON data." MAINTAINER="pankso@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://www.digip.org/jansson/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.digip.org/jansson/" WGET_URL="https://github.com/akheron/jansson/archive/v$VERSION.tar.gz" -HOST_ARCH="i486 arm" DEPENDS="xorg-libX11" -BUILD_DEPENDS="xorg-libX11-dev automake libtool" +BUILD_DEPENDS="automake libtool xorg-libX11-dev" + +HOST_ARCH="i486 arm" current_version() { @@ -23,14 +25,14 @@ # Rules to configure and make the package. compile_rules() { - autoreconf -i + autoreconf -i && ./configure $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_files *.so* }