wok view perl-html-parser/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 18c66805dd1a
children 78c6039421c0
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-html-parser"
4 VERSION="3.72"
5 CATEGORY="development"
6 SHORT_DESC="HTML::Parser module is a Perl extension."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL"
9 DEPENDS="perl perl-html-tagset"
10 BUILD_DEPENDS="perl perl-html-tagset"
11 SOURCE="HTML-Parser"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="https://metacpan.org/release/HTML-Parser"
14 WGET_URL="https://cpan.metacpan.org/CPAN/authors/id/G/GA/GAAS/$TARBALL"
16 current_version()
17 {
18 wget -O - $WEB_SITE 2>/dev/null | \
19 sed '/release-name/!d;s|.*-v*||;s|<.*||;q'
20 }
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 perl Makefile.PL &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/usr/lib $fs/usr
35 }