wok view perl-text-csv/receipt @ rev 24920

updated mp (5.2.10 -> 5.58)
author Hans-G?nter Theisgen
date Sun Apr 10 07:48:27 2022 +0100 (2022-04-10)
parents 15650f5d595b
children b27d8c263cba
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-text-csv"
4 VERSION="2.01"
5 CATEGORY="development"
6 SHORT_DESC="Perl - Manipulate comma-separated value strings."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL"
9 WEB_SITE="https://metacpan.org/pod/Text::CSV"
10 REPOLOGY="perl:text-csv"
12 SOURCE="Text-CSV"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WGET_URL="https://www.cpan.org/modules/by-module/Text/$TARBALL"
16 DEPENDS="perl"
17 BUILD_DEPENDS="perl"
19 current_version()
20 {
21 wget -O - $WEB_SITE 2>/dev/null | \
22 sed '/release-name/!d;s|.*-v*||;s|<.*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 PERL_MM_USE_DEFAULT=1 perl Makefile.PL &&
29 make &&
30 make install DESTDIR="$DESTDIR"
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cook_copy_folders lib
38 find $fs -name '.packlist' -delete
39 find $fs -name '*.pod' -delete
40 }