wok view perl-test-tester/receipt @ rev 25769
libmaxminddb, ndpi: add current_version
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Sep 06 09:45:40 2024 +0000 (9 months ago) |
parents | 0af8df0b46fc |
children | 6e7761d7363c |
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-test-tester"
4 VERSION="0.109"
5 CATEGORY="development"
6 SHORT_DESC="Ease testing test modules built with Test::Builder"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL"
9 SOURCE="Test-Tester"
10 WEB_SITE="https://search.cpan.org/dist/Test-Tester"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WGET_URL="https://cpan.metacpan.org/authors/id/F/FD/FDALY/$TARBALL"
14 DEPENDS="perl"
15 BUILD_DEPENDS="perl"
17 # What is the latest version available today?
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 DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 cp -a $install/usr $fs
36 }