wok view perl-fcgi/receipt @ rev 23621

updated ruby and ruby-dev (2.6.4 -> 2.7.1)
author Hans-G?nter Theisgen
date Tue Apr 14 15:51:31 2020 +0100 (2020-04-14)
parents 6e8b1bcb30e2
children 15650f5d595b
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 # Rules to configure and make the package.
20 compile_rules()
21 {
22 perl Makefile.PL &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/lib $fs/usr
33 # remove perllocal.pod and .packlist
34 find $fs -name perllocal.pod -delete
35 find $fs -name .packlist -delete
36 }