wok rev 24213

updated perl-file-which (1.23 -> 1.27)
author Hans-G?nter Theisgen
date Fri Dec 31 16:19:09 2021 +0100 (2021-12-31)
parents c0318ab3558b
children 31ef0482f5f9
files perl-file-which/description.txt perl-file-which/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/perl-file-which/description.txt	Fri Dec 31 16:19:09 2021 +0100
     1.3 @@ -0,0 +1,16 @@
     1.4 +File::Which finds the full or relative paths to executable programs
     1.5 +on the system.
     1.6 +This is normally the function of which utility. which is typically
     1.7 +implemented as either a program or a built in shell command.
     1.8 +On some platforms, such as Microsoft Windows it is not provided as
     1.9 +part of the core operating system.
    1.10 +This module provides a consistent API to this functionality
    1.11 +regardless of the underlying platform.
    1.12 +
    1.13 +The focus of this module is correctness and portability.
    1.14 +As a consequence platforms where the current directory is implicitly
    1.15 +part of the search path such as Microsoft Windows will find
    1.16 +executables in the current directory, whereas on platforms such as
    1.17 +UNIX where this is not the case executables in the current directory
    1.18 +will only be found if the current directory is explicitly added to
    1.19 +the path.
     2.1 --- a/perl-file-which/receipt	Fri Dec 31 16:13:01 2021 +0100
     2.2 +++ b/perl-file-which/receipt	Fri Dec 31 16:19:09 2021 +0100
     2.3 @@ -1,12 +1,13 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="perl-file-which"
     2.7 -VERSION="1.23"
     2.8 +VERSION="1.27"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="Perl extension File::Which."
    2.11  MAINTAINER="maintainer@slitaz.org"
    2.12  LICENSE="GPL"
    2.13 -WEB_SITE="https://metacpan.org/release/File-Which"
    2.14 +WEB_SITE="https://metacpan.org/pod/File::Which"
    2.15 +REPOLOGY="perl:file-which"
    2.16  
    2.17  SOURCE="File-Which"
    2.18  TARBALL="$SOURCE-$VERSION.tar.gz"
    2.19 @@ -26,12 +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 -	mkdir -p $fs/usr
    2.31 -	cp -a $install/usr/lib	$fs/usr
    2.32 +	cook_copy_folders	lib
    2.33  }