wok rev 24259

updated perl-test-simple (1.302172 -> 1.302188)
author Hans-G?nter Theisgen
date Sun Jan 02 10:10:22 2022 +0100 (2022-01-02)
parents eaee9007e7d8
children 447d3e53b8dc
files perl-test-simple/description.txt perl-test-simple/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/perl-test-simple/description.txt	Sun Jan 02 10:10:22 2022 +0100
     1.3 @@ -0,0 +1,9 @@
     1.4 +This is an extremely simple, extremely basic module for writing tests
     1.5 +suitable for CPAN modules and other pursuits.
     1.6 +If you wish to do more complicated testing, use the Test::More module
     1.7 +(a drop-in replacement for this one).
     1.8 +
     1.9 +The basic unit of Perl testing is the ok. For each thing you want to
    1.10 +test your program will print out an "ok" or "not ok" to indicate pass
    1.11 +or fail.
    1.12 +You do this with the ok() function.
     2.1 --- a/perl-test-simple/receipt	Sun Jan 02 10:07:54 2022 +0100
     2.2 +++ b/perl-test-simple/receipt	Sun Jan 02 10:10:22 2022 +0100
     2.3 @@ -1,12 +1,13 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="perl-test-simple"
     2.7 -VERSION="1.302172"
     2.8 +VERSION="1.302188"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="Perl extension Test::Simple."
    2.11  MAINTAINER="nneul@neulinger.org"
    2.12  LICENSE="GPL"
    2.13 -WEB_SITE="https://metacpan.org/release/Test-Simple"
    2.14 +WEB_SITE="https://metacpan.org/pod/Test::Simple"
    2.15 +REPOLOGY="perl:test-simple"
    2.16  
    2.17  SOURCE="Test-Simple"
    2.18  TARBALL="$SOURCE-$VERSION.tar.gz"
    2.19 @@ -26,11 +27,11 @@
    2.20  {
    2.21  	perl Makefile.PL &&
    2.22  	make &&
    2.23 -	make DESTDIR=$DESTDIR install
    2.24 +	make install DESTDIR=$DESTDIR
    2.25  }
    2.26  
    2.27  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.28  genpkg_rules()
    2.29  {
    2.30 -	cp -a $install/usr	$fs
    2.31 +	cook_copy_folders	lib
    2.32  }