wok-current rev 24725
updated libconfig and libconfig-dev (1.7.2 -> 1.7.3)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Mar 15 11:07:13 2022 +0100 (2022-03-15) |
parents | b36efb4387b7 |
children | 798acb92d4d5 |
files | libconfig-dev/receipt libconfig/description.txt libconfig/receipt |
line diff
1.1 --- a/libconfig-dev/receipt Tue Mar 15 10:51:40 2022 +0100 1.2 +++ b/libconfig-dev/receipt Tue Mar 15 11:07:13 2022 +0100 1.3 @@ -1,23 +1,18 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libconfig-dev" 1.7 -VERSION="1.7.2" 1.8 +VERSION="1.7.3" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="C/C++ Configuration File Library, development files" 1.11 +SHORT_DESC="C/C++ Configuration File Library, development files." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="LGPL2.1" 1.14 WEB_SITE="https://www.hyperrealm.com/libconfig/" 1.15 1.16 +DEPENDS="libconfig pkg-config" 1.17 WANTED="libconfig" 1.18 1.19 -DEPENDS="libconfig pkg-config" 1.20 - 1.21 # Rules to gen a SliTaz package suitable for Tazpkg. 1.22 genpkg_rules() 1.23 { 1.24 - mkdir -p $fs/usr/lib 1.25 - 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 + get_dev_files 1.30 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libconfig/description.txt Tue Mar 15 11:07:13 2022 +0100 2.3 @@ -0,0 +1,11 @@ 2.4 +Libconfig is a simple library for processing structured configuration 2.5 +files, like this one. 2.6 +This file format is more compact and more readable than XML. 2.7 +And unlike XML, it is type-aware, so it is not necessary to do string 2.8 +parsing in application code. 2.9 + 2.10 +Libconfig is very compact - a fraction of the size of the expat XML 2.11 +parser library. This makes it well-suited for memory-constrained systems. 2.12 + 2.13 +The library includes bindings for both the C and C++ languages. 2.14 +It works on POSIX-compliant UNIX and UNIX-like systems.
3.1 --- a/libconfig/receipt Tue Mar 15 10:51:40 2022 +0100 3.2 +++ b/libconfig/receipt Tue Mar 15 11:07:13 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="libconfig" 3.7 -VERSION="1.7.2" 3.8 +VERSION="1.7.3" 3.9 CATEGORY="misc" 3.10 SHORT_DESC="C/C++ Configuration File Library." 3.11 MAINTAINER="pascal.bellard@slitaz.org" 3.12 @@ -23,20 +23,20 @@ 3.13 # Rules to configure and make the package. 3.14 compile_rules() 3.15 { 3.16 - autoreconf 3.17 + autoreconf && 3.18 ./configure \ 3.19 --prefix=/usr \ 3.20 --infodir=/usr/share/info \ 3.21 --mandir=/usr/share/man \ 3.22 --disable-cxx \ 3.23 + --disable-doc \ 3.24 $CONFIGURE_ARGS && 3.25 - make -j 1 && 3.26 - make DESTDIR=$DESTDIR -j 1 install 3.27 + make && 3.28 + make install DESTDIR=$DESTDIR 3.29 } 3.30 3.31 # Rules to gen a SliTaz package suitable for Tazpkg. 3.32 genpkg_rules() 3.33 { 3.34 - mkdir -p $fs/usr/lib 3.35 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.36 + cook_copy_files *.so* 3.37 }