# HG changeset patch # User Hans-G?nter Theisgen # Date 1647338833 -3600 # Node ID b6e30721444bb4fa781e63c75b84a03c4e2dda0e # Parent b36efb4387b72efd49a8d4577643becdbaa9c891 updated libconfig and libconfig-dev (1.7.2 -> 1.7.3) diff -r b36efb4387b7 -r b6e30721444b libconfig-dev/receipt --- a/libconfig-dev/receipt Tue Mar 15 10:51:40 2022 +0100 +++ b/libconfig-dev/receipt Tue Mar 15 11:07:13 2022 +0100 @@ -1,23 +1,18 @@ # SliTaz package receipt. PACKAGE="libconfig-dev" -VERSION="1.7.2" +VERSION="1.7.3" CATEGORY="development" -SHORT_DESC="C/C++ Configuration File Library, development files" +SHORT_DESC="C/C++ Configuration File Library, development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL2.1" WEB_SITE="https://www.hyperrealm.com/libconfig/" +DEPENDS="libconfig pkg-config" WANTED="libconfig" -DEPENDS="libconfig pkg-config" - # 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 + get_dev_files } diff -r b36efb4387b7 -r b6e30721444b libconfig/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libconfig/description.txt Tue Mar 15 11:07:13 2022 +0100 @@ -0,0 +1,11 @@ +Libconfig is a simple library for processing structured configuration +files, like this one. +This file format is more compact and more readable than XML. +And unlike XML, it is type-aware, so it is not necessary to do string +parsing in application code. + +Libconfig is very compact - a fraction of the size of the expat XML +parser library. This makes it well-suited for memory-constrained systems. + +The library includes bindings for both the C and C++ languages. +It works on POSIX-compliant UNIX and UNIX-like systems. diff -r b36efb4387b7 -r b6e30721444b libconfig/receipt --- a/libconfig/receipt Tue Mar 15 10:51:40 2022 +0100 +++ b/libconfig/receipt Tue Mar 15 11:07:13 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libconfig" -VERSION="1.7.2" +VERSION="1.7.3" CATEGORY="misc" SHORT_DESC="C/C++ Configuration File Library." MAINTAINER="pascal.bellard@slitaz.org" @@ -23,20 +23,20 @@ # Rules to configure and make the package. compile_rules() { - autoreconf + autoreconf && ./configure \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ --disable-cxx \ + --disable-doc \ $CONFIGURE_ARGS && - make -j 1 && - make DESTDIR=$DESTDIR -j 1 install + make && + make install DESTDIR=$DESTDIR } # 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* }