wok view perl-rrd-simple/receipt @ rev 24975

Update some wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 02 16:22:04 2022 +0000 (2022-05-02)
parents 15650f5d595b
children a66f312c374b
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-rrd-simple"
4 VERSION="1.44"
5 CATEGORY="development"
6 SHORT_DESC="RRD::Simple module is a Perl extension."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL"
9 SOURCE="RRD-Simple"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="https://metacpan.org/release/$SOURCE"
12 WGET_URL="https://cpan.metacpan.org/authors/id/N/NI/NICOLAW/$TARBALL"
14 DEPENDS="perl rrdtool-perl"
15 BUILD_DEPENDS="perl rrdtool-perl perl-test-pod perl-test-deep perl-test-pod-coverage"
17 current_version()
18 {
19 wget -O - $WEB_SITE 2>/dev/null | \
20 sed '/release-name/!d;s|.*-v*||;s|<.*||;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 cd $src
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 stuff/*/ $fs
36 cp -a $install/usr/lib $fs/usr
37 }