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

gtk-gnutella: binutils 2.34+ support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 13:10:56 2022 +0000 (23 months ago)
parents 3026aad208f2
children b27d8c263cba
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://cpan.metacpan.org/authors/id/A/AT/ATOOMIC/$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 }