wok view perl-fcgi/receipt @ rev 24143

Add ventoy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 16 17:16:48 2021 +0000 (2021-11-16)
parents 4baa8156f3f2
children fa65e0f9461c
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-fcgi"
4 VERSION="0.79"
5 CATEGORY="development"
6 SHORT_DESC="Perl Module FCGI."
7 MAINTAINER="nneul@neulinger.org"
8 LICENSE="other"
9 # Open Market vendor specific, looks BSD'ish
10 WEB_SITE="https://metacpan.org/release/FCGI/"
12 SOURCE="FCGI"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WGET_URL="https://www.cpan.org/modules/by-module/FCGI/$TARBALL"
16 DEPENDS="perl"
17 BUILD_DEPENDS="perl"
19 current_version()
20 {
21 wget -O - $WEB_SITE 2>/dev/null | \
22 sed '/release-name/!d;s|.*-v*||;s|<.*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 perl Makefile.PL &&
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr
37 cp -a $install/usr/lib $fs/usr
39 # remove perllocal.pod and .packlist
40 find $fs -name perllocal.pod -delete
41 find $fs -name .packlist -delete
42 }