wok view perl-params-validate/receipt @ rev 25503

f3: include extra programs
author Hans-G?nter Theisgen
date Fri Jan 27 10:37:43 2023 +0100 (15 months ago)
parents b369f811852b
children
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-params-validate"
4 VERSION="1.29"
5 CATEGORY="development"
6 SHORT_DESC="Perl extension Params::Validate."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="https://metacpan.org/release/Params-Validate"
11 SOURCE="Params-Validate"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="https://www.cpan.org/modules/by-module/Params/$TARBALL"
15 DEPENDS="perl perl-module-implementation perl-test-fatal perl-test-requires perl-test-simple"
16 BUILD_DEPENDS="$DEPENDS"
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 &&
28 ./Build --destdir $DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
35 cp -a $install/usr/lib $fs/usr
36 }