# HG changeset patch # User Hans-G?nter Theisgen # Date 1641115095 -3600 # Node ID 49261384c207fe04ba495191db9f4cb967ed39a6 # Parent c9d198607d5c254dc7df39fcac6b5bf166213d9c updated perl-text-template (1.58 -> 1.60) diff -r c9d198607d5c -r 49261384c207 perl-text-template/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-text-template/description.txt Sun Jan 02 10:18:15 2022 +0100 @@ -0,0 +1,12 @@ +This is a library for generating form letters, building HTML pages, +or filling in templates generally. +A "template" is a piece of text that has little Perl programs embedded +in it here and there. +When you "fill in" a template, you evaluate the little programs and +replace them with their values. + +You can store a template in a file outside your program. +People can modify the template without modifying the program. +You can separate the formatting details from the main code, and put +the formatting parts of the program into the template. +That prevents code bloat and encourages functional separation. diff -r c9d198607d5c -r 49261384c207 perl-text-template/receipt --- a/perl-text-template/receipt Sun Jan 02 10:16:08 2022 +0100 +++ b/perl-text-template/receipt Sun Jan 02 10:18:15 2022 +0100 @@ -1,12 +1,13 @@ # SliTaz package receipt. PACKAGE="perl-text-template" -VERSION="1.58" +VERSION="1.60" CATEGORY="development" SHORT_DESC="Perl extension Text::Template." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" -WEB_SITE="https://metacpan.org/release/Text-Template" +WEB_SITE="https://metacpan.org/pod/Text::Template" +REPOLOGY="perl:text-template" SOURCE="Text-Template" 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 }