wok-current rev 24272
updated perltidy (20200110 -> 20211029)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Jan 02 10:48:51 2022 +0100 (2022-01-02) |
parents | 9463e45f65dc |
children | f9da3eefbc96 |
files | perltidy/description.txt perltidy/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/perltidy/description.txt Sun Jan 02 10:48:51 2022 +0100 1.3 @@ -0,0 +1,5 @@ 1.4 +This module makes the functionality of the perltidy utility available to 1.5 +perl scripts. 1.6 +Any or all of the input parameters may be omitted, in which case the 1.7 +@ARGV array will be used to provide input parameters as described in the 1.8 +perltidy(1) man page.
2.1 --- a/perltidy/receipt Sun Jan 02 10:42:49 2022 +0100 2.2 +++ b/perltidy/receipt Sun Jan 02 10:48:51 2022 +0100 2.3 @@ -1,12 +1,12 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="perltidy" 2.7 -VERSION="20200110" 2.8 +VERSION="20211029" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Perl Code Formatter." 2.11 MAINTAINER="nneul@neulinger.org" 2.12 LICENSE="GPL" 2.13 -WEB_SITE="https://metacpan.org/release/Perl-Tidy/" 2.14 +WEB_SITE="https://metacpan.org/pod/Perl::Tidy" 2.15 2.16 SOURCE="Perl-Tidy" 2.17 TARBALL="$SOURCE-$VERSION.tar.gz" 2.18 @@ -26,15 +26,14 @@ 2.19 { 2.20 perl Makefile.PL && 2.21 make && 2.22 - make DESTDIR=$DESTDIR install 2.23 + make install DESTDIR=$DESTDIR 2.24 } 2.25 2.26 # Rules to gen a SliTaz package suitable for Tazpkg. 2.27 genpkg_rules() 2.28 { 2.29 - mkdir -p $fs/usr 2.30 - cp -a $install/usr/bin $fs/usr 2.31 - cp -a $install/usr/lib $fs/usr 2.32 + cook_copy_folders bin 2.33 + cook_copy_folders lib 2.34 2.35 # remove perllocal.pod and .packlist 2.36 find $fs -name perllocal.pod -delete