# HG changeset patch # User Hans-G?nter Theisgen # Date 1553959375 -3600 # Node ID 9717b08dd673fe7b166662c1ebaee731e8f941bd # Parent e98e0b9d9b661c2bf1a72d647ded4c14c1bbcbd1 updated libconfig and libconfig-dev (1.4.8 -> 1.7.2) diff -r e98e0b9d9b66 -r 9717b08dd673 libconfig-dev/receipt --- a/libconfig-dev/receipt Sat Mar 30 15:57:49 2019 +0100 +++ b/libconfig-dev/receipt Sat Mar 30 16:22:55 2019 +0100 @@ -1,21 +1,22 @@ # SliTaz package receipt. PACKAGE="libconfig-dev" -VERSION="1.4.8" +VERSION="1.7.2" CATEGORY="development" SHORT_DESC="C/C++ Configuration File Library, development files" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL2.1" -WEB_SITE="http://www.hyperrealm.com/libconfig/" +WEB_SITE="https://www.hyperrealm.com/libconfig/" + 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 + + 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 } diff -r e98e0b9d9b66 -r 9717b08dd673 libconfig/receipt --- a/libconfig/receipt Sat Mar 30 15:57:49 2019 +0100 +++ b/libconfig/receipt Sat Mar 30 16:22:55 2019 +0100 @@ -1,27 +1,30 @@ # SliTaz package receipt. PACKAGE="libconfig" -VERSION="1.4.8" +VERSION="1.7.2" CATEGORY="misc" -SHORT_DESC="C/C++ Configuration File Library" +SHORT_DESC="C/C++ Configuration File Library." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL2.1" +WEB_SITE="https://www.hyperrealm.com/libconfig/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.hyperrealm.com/libconfig/" -WGET_URL="$WEB_SITE$TARBALL" +WGET_URL="https://github.com/hyperrealm/$PACKAGE/archive/v$VERSION.tar.gz" -BUILD_DEPENDS="" DEPENDS="" +BUILD_DEPENDS="automake" # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - --disable-cxx \ - $CONFIGURE_ARGS && - make && + autoreconf + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --disable-cxx \ + $CONFIGURE_ARGS && + make -j 1 && make DESTDIR=$DESTDIR -j 1 install }