wok-current rev 24684
updated jansson and jansson-dev (2.12 -> 2.14)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Mar 12 10:51:35 2022 +0100 (2022-03-12) |
parents | 57462eac4c41 |
children | 73f2eb72a8fe |
files | jansson-dev/receipt jansson/description.txt jansson/receipt |
line diff
1.1 --- a/jansson-dev/receipt Sat Mar 12 10:39:47 2022 +0100 1.2 +++ b/jansson-dev/receipt Sat Mar 12 10:51:35 2022 +0100 1.3 @@ -1,17 +1,18 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="jansson-dev" 1.7 -VERSION="2.12" 1.8 +VERSION="2.14" 1.9 CATEGORY="x-window" 1.10 -SHORT_DESC="Jansson static libs and include headers" 1.11 +SHORT_DESC="Jansson static libraries and include headers." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 LICENSE="GPL2" 1.14 -WEB_SITE="http://www.digip.org/jansson/" 1.15 +WEB_SITE="https://www.digip.org/jansson/" 1.16 + 1.17 +DEPENDS="jansson" 1.18 +WANTED="jansson" 1.19 + 1.20 HOST_ARCH="i486 arm" 1.21 1.22 -WANTED="jansson" 1.23 -DEPENDS="jansson" 1.24 - 1.25 # Rules to gen a SliTaz package suitable for Tazpkg. 1.26 genpkg_rules() 1.27 {
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/jansson/description.txt Sat Mar 12 10:51:35 2022 +0100 2.3 @@ -0,0 +1,8 @@ 2.4 +Jansson is a C library for encoding, decoding and manipulating JSON data. 2.5 +Its main features and design principles are: 2.6 + 2.7 +* Simple and intuitive API and data model 2.8 +* Comprehensive documentation 2.9 +* No dependencies on other libraries 2.10 +* Full Unicode support (UTF-8) 2.11 +* Extensive test suite
3.1 --- a/jansson/receipt Sat Mar 12 10:39:47 2022 +0100 3.2 +++ b/jansson/receipt Sat Mar 12 10:51:35 2022 +0100 3.3 @@ -1,18 +1,20 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="jansson" 3.7 -VERSION="2.12" 3.8 +VERSION="2.14" 3.9 CATEGORY="x-window" 3.10 SHORT_DESC="C library for encoding, decoding and manipulating JSON data." 3.11 MAINTAINER="pankso@slitaz.org" 3.12 LICENSE="GPL2" 3.13 +WEB_SITE="https://www.digip.org/jansson/" 3.14 + 3.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.16 -WEB_SITE="http://www.digip.org/jansson/" 3.17 WGET_URL="https://github.com/akheron/jansson/archive/v$VERSION.tar.gz" 3.18 -HOST_ARCH="i486 arm" 3.19 3.20 DEPENDS="xorg-libX11" 3.21 -BUILD_DEPENDS="xorg-libX11-dev automake libtool" 3.22 +BUILD_DEPENDS="automake libtool xorg-libX11-dev" 3.23 + 3.24 +HOST_ARCH="i486 arm" 3.25 3.26 current_version() 3.27 { 3.28 @@ -23,14 +25,14 @@ 3.29 # Rules to configure and make the package. 3.30 compile_rules() 3.31 { 3.32 - autoreconf -i 3.33 + autoreconf -i && 3.34 ./configure $CONFIGURE_ARGS && 3.35 - make && make install 3.36 + make && 3.37 + make install 3.38 } 3.39 3.40 # Rules to gen a SliTaz package suitable for Tazpkg. 3.41 genpkg_rules() 3.42 { 3.43 - mkdir -p $fs/usr/lib 3.44 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.45 + cook_copy_files *.so* 3.46 }