wok view perl-test-deep/receipt @ rev 25836
Update some current_version()
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed May 07 10:55:10 2025 +0000 (4 months ago) |
parents | 373233562953 |
children | 868d2a5fbe08 |
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-test-deep"
4 VERSION="1.130"
5 CATEGORY="development"
6 SHORT_DESC="Perl - Extremely flexible deep comparison."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL"
9 WEB_SITE="https://metacpan.org/dist/Test-Deep"
11 SOURCE="Test-Deep"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="https://cpan.metacpan.org/modules/by-module/Test/$TARBALL"
15 DEPENDS="perl perl-test-nowarnings"
16 BUILD_DEPENDS="$DEPENDS"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - $WEB_SITE 2>/dev/null | \
22 sed '/release-name/!d;s|.*-v*||;s|<.*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 perl Makefile.PL &&
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/usr $fs
37 }