wok view perl-template-toolkit/receipt @ rev 24253

updated perl-template-toolkit (3.008 -> 3.010)
author Hans-G?nter Theisgen
date Sun Jan 02 09:54:37 2022 +0100 (2022-01-02)
parents 15650f5d595b
children 6e5c8ce7fb15
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-template-toolkit"
4 VERSION="3.010"
5 CATEGORY="development"
6 SHORT_DESC="Perl Module Template Toolkit."
7 MAINTAINER="nneul@neulinger.org"
8 LICENSE="GPL"
9 WEB_SITE="https://metacpan.org/pod/Template::Toolkit"
10 REPOLOGY="perl:template-toolkit"
12 SOURCE="Template-Toolkit"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WGET_URL="https://www.cpan.org/modules/by-module/Template/$TARBALL"
16 DEPENDS="perl perl-appconfig"
17 BUILD_DEPENDS="perl perl-appconfig"
19 current_version()
20 {
21 wget -O - $WEB_SITE 2>/dev/null | \
22 sed '/release-name/!d;s|.*-||;s|<.*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 perl Makefile.PL TT_XS_ENABLE=y TT_XS_DEFAULT=y TT_ACCEPT=y TT_QUIET=n &&
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 # remove perllocal.pod and .packlist
38 find ${fs} -name perllocal.pod -delete
39 find ${fs} -name .packlist -delete
40 }