# HG changeset patch # User Hans-G?nter Theisgen # Date 1585719088 -3600 # Node ID 7cae9edc1c2e77c1a5a4dcfd159d520dc343d37b # Parent 8dfc1d7427f90a1423def02471eec64511120675 updated perl-text-csv (1.20 -> 2.00) diff -r 8dfc1d7427f9 -r 7cae9edc1c2e perl-text-csv/receipt --- a/perl-text-csv/receipt Tue Mar 31 17:54:34 2020 +0100 +++ b/perl-text-csv/receipt Wed Apr 01 06:31:28 2020 +0100 @@ -1,24 +1,25 @@ # SliTaz package receipt. PACKAGE="perl-text-csv" -VERSION="1.20" +VERSION="2.00" CATEGORY="development" -SHORT_DESC="Manipulate comma-separated value strings." +SHORT_DESC="Perl - Manipulate comma-separated value strings." MAINTAINER="slaxemulator@gmail.com" LICENSE="GPL" +WEB_SITE="https://metacpan.org/release/Text-CSV/" + +SOURCE="Text-CSV" +TARBALL="$SOURCE-$VERSION.tar.gz" +WGET_URL="https://www.cpan.org/modules/by-module/Text/$TARBALL" + DEPENDS="perl" BUILD_DEPENDS="perl" -SOURCE="Text-CSV" -TARBALL="$SOURCE-$VERSION.tar.gz" -WEB_SITE="https://metacpan.org/release/Text-CSV/" -WGET_URL="https://metacpan.org/CPAN/authors/id/M/MA/MAKAMAKA/$TARBALL" # Rules to configure and make the package. compile_rules() { - cd $src - PERL_MM_USE_DEFAULT=1 perl Makefile.PL - make + PERL_MM_USE_DEFAULT=1 perl Makefile.PL && + make && make DESTDIR="$DESTDIR" install } @@ -26,10 +27,8 @@ genpkg_rules() { mkdir -p $fs/usr - cp -a $install/usr/lib $fs/usr + cp -a $install/usr/lib $fs/usr find $fs -name '.packlist' -delete find $fs -name '*.pod' -delete - } -