wok-current rev 24726
updated libconfuse (3.2.2 -> 3.3)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Mar 15 11:15:30 2022 +0100 (2022-03-15) |
parents | b6e30721444b |
children | 82d54eca72be |
files | libconfuse/description.txt libconfuse/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libconfuse/description.txt Tue Mar 15 11:15:30 2022 +0100 1.3 @@ -0,0 +1,9 @@ 1.4 +LibConfuse is a configuration file parser library written in C. 1.5 +It supports sections and (lists of) values, as well as other features 1.6 +such as single and double quoted strings, environment variable expansion, 1.7 +functions and nested include statements. 1.8 +Values can be strings, integers, floats, booleans, and sections. 1.9 + 1.10 +The goal is not to be *the* configuration file parser library with a 1.11 +gazillion of features. Instead, it aims to be easy to use and quick to 1.12 +integrate with your code.
2.1 --- a/libconfuse/receipt Tue Mar 15 11:07:13 2022 +0100 2.2 +++ b/libconfuse/receipt Tue Mar 15 11:15:30 2022 +0100 2.3 @@ -1,12 +1,12 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libconfuse" 2.7 -VERSION="3.2.2" 2.8 +VERSION="3.3" 2.9 CATEGORY="misc" 2.10 SHORT_DESC="Configuration file parser library." 2.11 MAINTAINER="mallory@sweetpeople.org" 2.12 LICENSE="ISC" 2.13 -WEB_SITE="http://www.nongnu.org/confuse/" 2.14 +WEB_SITE="https://github.com/libconfuse/libconfuse" 2.15 2.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 WGET_URL="https://github.com/martinh/$PACKAGE/archive/v$VERSION.tar.gz" 2.18 @@ -32,16 +32,12 @@ 2.19 2.20 sed -i 's/ -Werror//' src/Makefile 2.21 2.22 - make -j 1 && 2.23 - make DESTDIR=$DESTDIR install 2.24 + make && 2.25 + make install DESTDIR=$DESTDIR 2.26 } 2.27 2.28 # Rules to gen a SliTaz package suitable for Tazpkg. 2.29 genpkg_rules() 2.30 { 2.31 - mkdir -p $fs/usr/lib 2.32 - 2.33 - cp -a $install/usr/include $fs/usr 2.34 - cp -a $install/usr/lib/*.*a $fs/usr/lib 2.35 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 2.36 + get_dev_files 2.37 }