wok rev 24389

updated c-ares and c-ares-dev (1.15.0 -> 1.18.1)
author Hans-G?nter Theisgen
date Mon Feb 07 17:27:32 2022 +0100 (2022-02-07)
parents 378047fc5291
children 267887cc84bf
files c-ares-dev/receipt c-ares/receipt
line diff
     1.1 --- a/c-ares-dev/receipt	Mon Feb 07 16:44:28 2022 +0100
     1.2 +++ b/c-ares-dev/receipt	Mon Feb 07 17:27:32 2022 +0100
     1.3 @@ -1,21 +1,20 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="c-ares-dev"
     1.7 -VERSION="1.15.0"
     1.8 +VERSION="1.18.1"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="A C library for asynchronous DNS requests, development files."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="MIT"
    1.13 -WEB_SITE="https://c-ares.haxx.se/"
    1.14 +WEB_SITE="https://c-ares.org/"
    1.15  
    1.16 +DEPENDS="c-ares pkg-config"
    1.17  WANTED="c-ares"
    1.18 -DEPENDS="c-ares pkg-config"
    1.19  
    1.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.21  genpkg_rules()
    1.22  {
    1.23 -	mkdir -p $fs/usr/lib
    1.24 -	cp -a $install/usr/include $fs/usr
    1.25 -	cp -a $install/usr/lib/*a $fs/usr/lib
    1.26 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.27 +	cook_copy_folders	include
    1.28 +	cook_copy_folders	pkgconfig
    1.29 +	cook_copy_files		*.*a
    1.30  }
     2.1 --- a/c-ares/receipt	Mon Feb 07 16:44:28 2022 +0100
     2.2 +++ b/c-ares/receipt	Mon Feb 07 17:27:32 2022 +0100
     2.3 @@ -1,12 +1,12 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="c-ares"
     2.7 -VERSION="1.15.0"
     2.8 +VERSION="1.18.1"
     2.9  CATEGORY="network"
    2.10  SHORT_DESC="A C library for asynchronous DNS requests."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12  LICENSE="MIT"
    2.13 -WEB_SITE="https://c-ares.haxx.se/"
    2.14 +WEB_SITE="https://c-ares.org/"
    2.15  
    2.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.17  WGET_URL="${WEB_SITE}download/$TARBALL"
    2.18 @@ -14,17 +14,16 @@
    2.19  # Rules to configure and make the package.
    2.20  compile_rules()
    2.21  {
    2.22 -	./configure \
    2.23 -		--prefix=/usr \
    2.24 -		--mandir=/usr/share/man \
    2.25 +	./configure			\
    2.26 +		--prefix=/usr		\
    2.27 +		--mandir=/usr/share/man	\
    2.28  		$CONFIGURE_ARGS &&
    2.29  	make &&
    2.30 -	make -j 1 DESTDIR=$DESTDIR install
    2.31 +	make install DESTDIR=$DESTDIR
    2.32  }
    2.33  
    2.34  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.35  genpkg_rules()
    2.36  {
    2.37 -	mkdir -p $fs/usr/lib
    2.38 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.39 +	cook_copy_files	*.so*
    2.40  }