wok view perl-appconfig/receipt @ rev 24102

Add some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 17 10:35:57 2021 +0000 (2021-09-17)
parents 6e8b1bcb30e2
children
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-appconfig"
4 VERSION="1.71"
5 CATEGORY="development"
6 SHORT_DESC="Perl/CPAN Module AppConfig"
7 MAINTAINER="nneul@neulinger.org"
8 LICENSE="Artistic"
9 DEPENDS="perl"
10 BUILD_DEPENDS="perl"
11 SOURCE="AppConfig"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="https://metacpan.org/release/AppConfig/"
14 WGET_URL="http://www.cpan.org/authors/id/N/NE/NEILB/$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 cd $src
26 perl Makefile.PL &&
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
35 cp -a $install/usr/lib $fs/usr
36 # remove perllocal.pod and .packlist
37 find ${fs} -name perllocal.pod -delete
38 find ${fs} -name .packlist -delete
41 }