wok view perl-html-tree/receipt @ rev 24250

updated perl-proc-processtable (0.59 -> 0.634)
author Hans-G?nter Theisgen
date Sun Jan 02 09:43:23 2022 +0100 (2022-01-02)
parents 81ed41f7cbdf
children
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-html-tree"
4 VERSION="5.07"
5 CATEGORY="development"
6 SHORT_DESC="Perl extension HTML::Tree."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL"
9 WEB_SITE="https://metacpan.org/release/HTML-Tree"
11 SOURCE="HTML-Tree"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="https://www.cpan.org/modules/by-module/HTML/$TARBALL"
15 DEPENDS="perl perl-html-parser perl-html-tagset"
16 BUILD_DEPENDS="perl perl-html-parser 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 Build.PL 2>&1 | sed '/WARNINGS/d' &&
28 ./Build &&
29 ./Build --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
37 }