# HG changeset patch # User Hans-G?nter Theisgen # Date 1640963949 -3600 # Node ID 3e3ada228d6085b3e98701c3b16c077dee32316e # Parent c0318ab3558bb8356c1ec60bb9787a501aa727b7 updated perl-file-which (1.23 -> 1.27) diff -r c0318ab3558b -r 3e3ada228d60 perl-file-which/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-file-which/description.txt Fri Dec 31 16:19:09 2021 +0100 @@ -0,0 +1,16 @@ +File::Which finds the full or relative paths to executable programs +on the system. +This is normally the function of which utility. which is typically +implemented as either a program or a built in shell command. +On some platforms, such as Microsoft Windows it is not provided as +part of the core operating system. +This module provides a consistent API to this functionality +regardless of the underlying platform. + +The focus of this module is correctness and portability. +As a consequence platforms where the current directory is implicitly +part of the search path such as Microsoft Windows will find +executables in the current directory, whereas on platforms such as +UNIX where this is not the case executables in the current directory +will only be found if the current directory is explicitly added to +the path. diff -r c0318ab3558b -r 3e3ada228d60 perl-file-which/receipt --- a/perl-file-which/receipt Fri Dec 31 16:13:01 2021 +0100 +++ b/perl-file-which/receipt Fri Dec 31 16:19:09 2021 +0100 @@ -1,12 +1,13 @@ # SliTaz package receipt. PACKAGE="perl-file-which" -VERSION="1.23" +VERSION="1.27" CATEGORY="development" SHORT_DESC="Perl extension File::Which." MAINTAINER="maintainer@slitaz.org" LICENSE="GPL" -WEB_SITE="https://metacpan.org/release/File-Which" +WEB_SITE="https://metacpan.org/pod/File::Which" +REPOLOGY="perl:file-which" SOURCE="File-Which" TARBALL="$SOURCE-$VERSION.tar.gz" @@ -26,12 +27,11 @@ { perl Makefile.PL && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/lib $fs/usr + cook_copy_folders lib }