wok rev 24401

updated check and check-dev (0.13.0 -> 0.15.2)
author Hans-G?nter Theisgen
date Tue Feb 08 17:05:29 2022 +0100 (2022-02-08)
parents 4bc80d930fe0
children afae00265386
files check-dev/receipt check/description.txt check/receipt
line diff
     1.1 --- a/check-dev/receipt	Tue Feb 08 15:46:39 2022 +0100
     1.2 +++ b/check-dev/receipt	Tue Feb 08 17:05:29 2022 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="check-dev"
     1.7 -VERSION="0.13.0"
     1.8 +VERSION="0.15.2"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Check - development files."
    1.11  MAINTAINER="erjo@slitaz.org"
    1.12 @@ -9,7 +9,6 @@
    1.13  WEB_SITE="https://libcheck.github.io/check/"
    1.14  
    1.15  DEPENDS="check pkg-config"
    1.16 -BUILD_DEPENDS=""
    1.17  WANTED="check"
    1.18  
    1.19  HOST_ARCH="i486 arm"
    1.20 @@ -17,11 +16,8 @@
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24 -	mkdir -p $fs/usr/lib
    1.25 -	mkdir -p $fs/usr/share
    1.26 -
    1.27 -	cp -a $install/usr/lib/*.*a		$fs/usr/lib
    1.28 -	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.29 -	cp -a $install/usr/include		$fs/usr
    1.30 -	cp -a $install/usr/share/aclocal	$fs/usr/share
    1.31 +	cook_copy_folders	aclocal
    1.32 +	cook_copy_folders	include
    1.33 +	cook_copy_folders	pkgconfig
    1.34 +	cook_copy_files		*.*a
    1.35  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/check/description.txt	Tue Feb 08 17:05:29 2022 +0100
     2.3 @@ -0,0 +1,8 @@
     2.4 +Check is a unit testing framework for C.
     2.5 +It features a simple interface for defining unit tests, putting
     2.6 +little in the way of the developer.
     2.7 +Tests are run in a separate address space, so both assertion
     2.8 +failures and code errors that cause segmentation faults or other
     2.9 +signals can be caught.
    2.10 +Test results are reportable in the following:
    2.11 +Subunit, TAP, XML, and a generic logging format.
     3.1 --- a/check/receipt	Tue Feb 08 15:46:39 2022 +0100
     3.2 +++ b/check/receipt	Tue Feb 08 17:05:29 2022 +0100
     3.3 @@ -1,7 +1,7 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="check"
     3.7 -VERSION="0.13.0"
     3.8 +VERSION="0.15.2"
     3.9  CATEGORY="system-tools"
    3.10  SHORT_DESC="A unit testing framework for C."
    3.11  MAINTAINER="erjo@slitaz.org"
    3.12 @@ -26,7 +26,9 @@
    3.13  compile_rules()
    3.14  {
    3.15  	autoreconf --install &&
    3.16 -	./configure $CONFIGURE_ARGS &&
    3.17 +	./configure			\
    3.18 +		--disable-build-docs	\
    3.19 +		$CONFIGURE_ARGS &&
    3.20  	make &&
    3.21  	make install
    3.22  }
    3.23 @@ -34,6 +36,5 @@
    3.24  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.25  genpkg_rules()
    3.26  {
    3.27 -	mkdir -p $fs/usr/lib
    3.28 -	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    3.29 +	cook_copy_files	*.so*
    3.30  }