wok rev 24707

updated lcov (1.14 -> 1.15)
author Hans-G?nter Theisgen
date Mon Mar 14 16:18:13 2022 +0100 (2022-03-14)
parents 68080ae2ec03
children f97d5405a108
files lcms2/receipt lcov/description.txt lcov/receipt
line diff
     1.1 --- a/lcms2/receipt	Mon Mar 14 15:57:04 2022 +0100
     1.2 +++ b/lcms2/receipt	Mon Mar 14 16:18:13 2022 +0100
     1.3 @@ -7,6 +7,7 @@
     1.4  MAINTAINER="al.bobylev@gmail.com"
     1.5  LICENSE="MIT"
     1.6  WEB_SITE="https://www.littlecms.com/"
     1.7 +REPOLOGY="lcms"
     1.8  
     1.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.10  WGET_URL="https://github.com/mm2/Little-CMS/archive/lcms$VERSION.tar.gz"
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/lcov/description.txt	Mon Mar 14 16:18:13 2022 +0100
     2.3 @@ -0,0 +1,16 @@
     2.4 +LCOV is an extension of GCOV, a GNU tool which provides information about
     2.5 +what parts of a program are actually executed (i.e. "covered") while running
     2.6 +a particular test case. The extension consists of a set of Perl scripts
     2.7 +which build on the textual GCOV output to implement the following enhanced
     2.8 +functionality:
     2.9 +
    2.10 +* HTML based output: coverage rates are additionally indicated using bar
    2.11 +  graphs and specific colors.
    2.12 +
    2.13 +* Support for large projects: overview pages allow quick browsing of
    2.14 +  coverage data by providing three levels of detail: directory view,
    2.15 +  file view and source code view.
    2.16 +
    2.17 +LCOV was initially designed to support Linux kernel coverage measurements,
    2.18 +but works as well for coverage measurements on standard user space
    2.19 +applications.
     3.1 --- a/lcov/receipt	Mon Mar 14 15:57:04 2022 +0100
     3.2 +++ b/lcov/receipt	Mon Mar 14 16:18:13 2022 +0100
     3.3 @@ -1,7 +1,7 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="lcov"
     3.7 -VERSION="1.14"
     3.8 +VERSION="1.15"
     3.9  CATEGORY="development"
    3.10  SHORT_DESC="LTP GCOV extension code coverage tool."
    3.11  MAINTAINER="pascal.bellard@slitaz.org"
    3.12 @@ -23,14 +23,15 @@
    3.13  # Rules to configure and make the package.
    3.14  compile_rules()
    3.15  {
    3.16 -	make PREFIX=/usr CFG_DIR=/etc DESTDIR=$DESTDIR install
    3.17 +	make	install		\
    3.18 +		PREFIX=/usr	\
    3.19 +		CFG_DIR=/etc	\
    3.20 +		DESTDIR=$DESTDIR
    3.21  }
    3.22  
    3.23  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.24  genpkg_rules()
    3.25  {
    3.26 -	mkdir -p $fs/usr
    3.27 -
    3.28 -	cp -a $install/usr/bin	$fs/usr
    3.29 -	cp -a $install/etc	$fs
    3.30 +	cook_copy_folders	bin
    3.31 +	cook_copy_folders	etc
    3.32  }