wok-current rev 24208
updated perl-file-listing (6.04 -> 6.14)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Dec 31 15:45:38 2021 +0100 (2021-12-31) |
parents | 8a801a6c0e8a |
children | 0e2caf86aa48 |
files | perl-file-listing/description.txt perl-file-listing/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/perl-file-listing/description.txt Fri Dec 31 15:45:38 2021 +0100 1.3 @@ -0,0 +1,2 @@ 1.4 +This module exports a single function called parse_dir, 1.5 +which can be used to parse directory listings.
2.1 --- a/perl-file-listing/receipt Fri Dec 31 15:40:31 2021 +0100 2.2 +++ b/perl-file-listing/receipt Fri Dec 31 15:45:38 2021 +0100 2.3 @@ -1,17 +1,18 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="perl-file-listing" 2.7 -VERSION="6.04" 2.8 +VERSION="6.14" 2.9 CATEGORY="development" 2.10 SHORT_DESC="File::Listing - parse directory listing." 2.11 MAINTAINER="erjo@slitaz.org" 2.12 LICENSE="GPL" 2.13 +WEB_SITE="https://metacpan.org/pod/File::Listing" 2.14 +REPOLOGY="perl:file-listing" 2.15 +SOURCE="File-Listing" 2.16 +TARBALL="$SOURCE-$VERSION.tar.gz" 2.17 +WGET_URL="https://www.cpan.org/modules/by-module/File/$TARBALL" 2.18 DEPENDS="perl" 2.19 BUILD_DEPENDS="perl" 2.20 -SOURCE="File-Listing" 2.21 -TARBALL="$SOURCE-$VERSION.tar.gz" 2.22 -WEB_SITE="https://metacpan.org/pod/File::Listing" 2.23 -WGET_URL="https://metacpan.org/CPAN/authors/id/G/GA/GAAS/$TARBALL" 2.24 2.25 current_version() 2.26 { 2.27 @@ -22,16 +23,13 @@ 2.28 # Rules to configure and make the package. 2.29 compile_rules() 2.30 { 2.31 - cd $src 2.32 perl Makefile.PL && 2.33 make && 2.34 - make DESTDIR=$DESTDIR install 2.35 + make install DESTDIR=$DESTDIR 2.36 } 2.37 2.38 # Rules to gen a SliTaz package suitable for Tazpkg. 2.39 genpkg_rules() 2.40 { 2.41 - mkdir -p $fs/usr 2.42 - cp -a $install/usr/lib $fs/usr 2.43 + cook_copy_folders lib 2.44 } 2.45 -