wok view perl-compress-raw-bzip2/receipt @ rev 24326

Update some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 27 12:16:00 2022 +0000 (2022-01-27)
parents fe9734ecfefc
children c470ca10c896
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-compress-raw-bzip2"
4 VERSION="2.101"
5 CATEGORY="development"
6 SHORT_DESC="PERL low-level interface to bzip2."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="https://metacpan.org/pod/Compress::Raw::Bzip2"
10 REPOLOGY="perl:compress-raw-bzip2"
12 SOURCE="Compress-Raw-Bzip2"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WGET_URL="https://cpan.metacpan.org/authors/id/P/PM/PMQS/$TARBALL"
16 DEPENDS="perl"
17 BUILD_DEPENDS="perl"
19 current_version()
20 {
21 wget -O - $WEB_SITE 2>/dev/null | \
22 sed '/ompress-Raw-Bzip2-/!d;s|.*zip2-||;s| -.*||;s|"||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 perl Makefile.PL &&
29 make &&
30 make install DESTDIR=$DESTDIR
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cook_copy_folders lib
37 }