# HG changeset patch # User Hans-G?nter Theisgen # Date 1644251252 -3600 # Node ID 908ae78de97342858f47c00a5199975ccaae0545 # Parent 378047fc529104af13904743a5dbc84579d35358 updated c-ares and c-ares-dev (1.15.0 -> 1.18.1) diff -r 378047fc5291 -r 908ae78de973 c-ares-dev/receipt --- a/c-ares-dev/receipt Mon Feb 07 16:44:28 2022 +0100 +++ b/c-ares-dev/receipt Mon Feb 07 17:27:32 2022 +0100 @@ -1,21 +1,20 @@ # SliTaz package receipt. PACKAGE="c-ares-dev" -VERSION="1.15.0" +VERSION="1.18.1" CATEGORY="development" SHORT_DESC="A C library for asynchronous DNS requests, development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" -WEB_SITE="https://c-ares.haxx.se/" +WEB_SITE="https://c-ares.org/" +DEPENDS="c-ares pkg-config" WANTED="c-ares" -DEPENDS="c-ares 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 + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.*a } diff -r 378047fc5291 -r 908ae78de973 c-ares/receipt --- a/c-ares/receipt Mon Feb 07 16:44:28 2022 +0100 +++ b/c-ares/receipt Mon Feb 07 17:27:32 2022 +0100 @@ -1,12 +1,12 @@ # SliTaz package receipt. PACKAGE="c-ares" -VERSION="1.15.0" +VERSION="1.18.1" CATEGORY="network" SHORT_DESC="A C library for asynchronous DNS requests." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" -WEB_SITE="https://c-ares.haxx.se/" +WEB_SITE="https://c-ares.org/" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="${WEB_SITE}download/$TARBALL" @@ -14,17 +14,16 @@ # Rules to configure and make the package. compile_rules() { - ./configure \ - --prefix=/usr \ - --mandir=/usr/share/man \ + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && - make -j 1 DESTDIR=$DESTDIR install + 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* }