wok view perl-html-parser/receipt @ rev 25663

Update some perl* web_site
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 23 15:13:32 2024 +0000 (2 months ago)
parents 78c6039421c0
children
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-html-parser"
4 VERSION="3.76"
5 CATEGORY="development"
6 SHORT_DESC="HTML::Parser module is a Perl extension."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="https://metacpan.org/dist/HTML-Parser"
10 REPOLOGY="perl:html-parser"
11 SOURCE="HTML-Parser"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="https://www.cpan.org/modules/by-module/HTML/$TARBALL"
15 DEPENDS="perl perl-html-tagset"
16 BUILD_DEPENDS="perl perl-html-tagset"
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 Makefile.PL &&
28 make &&
29 make install DESTDIR=$DESTDIR
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 cook_copy_folders lib
36 }