# HG changeset patch # User Hans-G?nter Theisgen # Date 1647339330 -3600 # Node ID 798acb92d4d53ef1b4a3b0f63fbb692d435f7034 # Parent b6e30721444bb4fa781e63c75b84a03c4e2dda0e updated libconfuse (3.2.2 -> 3.3) diff -r b6e30721444b -r 798acb92d4d5 libconfuse/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libconfuse/description.txt Tue Mar 15 11:15:30 2022 +0100 @@ -0,0 +1,9 @@ +LibConfuse is a configuration file parser library written in C. +It supports sections and (lists of) values, as well as other features +such as single and double quoted strings, environment variable expansion, +functions and nested include statements. +Values can be strings, integers, floats, booleans, and sections. + +The goal is not to be *the* configuration file parser library with a +gazillion of features. Instead, it aims to be easy to use and quick to +integrate with your code. diff -r b6e30721444b -r 798acb92d4d5 libconfuse/receipt --- a/libconfuse/receipt Tue Mar 15 11:07:13 2022 +0100 +++ b/libconfuse/receipt Tue Mar 15 11:15:30 2022 +0100 @@ -1,12 +1,12 @@ # SliTaz package receipt. PACKAGE="libconfuse" -VERSION="3.2.2" +VERSION="3.3" CATEGORY="misc" SHORT_DESC="Configuration file parser library." MAINTAINER="mallory@sweetpeople.org" LICENSE="ISC" -WEB_SITE="http://www.nongnu.org/confuse/" +WEB_SITE="https://github.com/libconfuse/libconfuse" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://github.com/martinh/$PACKAGE/archive/v$VERSION.tar.gz" @@ -32,16 +32,12 @@ sed -i 's/ -Werror//' src/Makefile - make -j 1 && - make DESTDIR=$DESTDIR 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/include $fs/usr - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + get_dev_files }