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

Add some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 17 10:35:57 2021 +0000 (2021-09-17)
parents 7cae9edc1c2e
children c9d198607d5c
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-text-csv"
4 VERSION="2.00"
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/release/Text-CSV/"
11 SOURCE="Text-CSV"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="https://www.cpan.org/modules/by-module/Text/$TARBALL"
15 DEPENDS="perl"
16 BUILD_DEPENDS="perl"
18 current_version()
19 {
20 wget -O - $WEB_SITE 2>/dev/null | \
21 sed '/release-name/!d;s|.*-v*||;s|<.*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 PERL_MM_USE_DEFAULT=1 perl Makefile.PL &&
28 make &&
29 make DESTDIR="$DESTDIR" install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
36 cp -a $install/usr/lib $fs/usr
38 find $fs -name '.packlist' -delete
39 find $fs -name '*.pod' -delete
40 }