wok view perl-log-log4perl/receipt @ rev 24183

updated perl-cgi (4.46 -> 4.53)
author Hans-G?nter Theisgen
date Fri Dec 31 13:55:09 2021 +0100 (2021-12-31)
parents c86e41198e76
children 53660c632117
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-log-log4perl"
4 VERSION="1.49"
5 CATEGORY="development"
6 SHORT_DESC="Log::Log4perl module is a Perl extension."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="Perl"
9 DEPENDS="perl"
10 BUILD_DEPENDS="perl"
11 SOURCE="Log-Log4perl"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="https://metacpan.org/pod/Log::Log4perl"
14 WGET_URL="https://cpan.metacpan.org/authors/id/M/MS/MSCHILLI/$TARBALL"
16 current_version()
17 {
18 wget -O - $WEB_SITE 2>/dev/null | \
19 sed '/release-name/!d;s|.*-v*||;s|<.*||;q'
20 }
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 perl Makefile.PL &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $install/usr $fs/
34 }