wok view perl-fcgi/receipt @ rev 23880

Up slitaz-boot-scripts (463): busybox may need /usr/lib/libstd++.so
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 07 06:35:39 2020 +0000 (2020-07-07)
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 }