wok view perltidy/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents 15650f5d595b
children b27d8c263cba
line source
1 # SliTaz package receipt.
3 PACKAGE="perltidy"
4 VERSION="20211029"
5 CATEGORY="development"
6 SHORT_DESC="Perl Code Formatter."
7 MAINTAINER="nneul@neulinger.org"
8 LICENSE="GPL"
9 WEB_SITE="https://metacpan.org/pod/Perl::Tidy"
11 SOURCE="Perl-Tidy"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="https://www.cpan.org/modules/by-module/Perl/$TARBALL"
15 DEPENDS="perl"
16 BUILD_DEPENDS="perl"
18 current_version()
19 {
20 wget -O - $WEB_SITE 2>/dev/null | \
21 sed '/release-name/!d;s|.*-||;s|<.*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 perl Makefile.PL &&
28 make &&
29 make install DESTDIR=$DESTDIR
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 cook_copy_folders bin
36 cook_copy_folders lib
38 # remove perllocal.pod and .packlist
39 find $fs -name perllocal.pod -delete
40 find $fs -name .packlist -delete
41 }