wok-6.x diff perl-fcgi/receipt @ rev 23754
directfb: added build dependency gcc83-lib-base
author | Hans-G?nter Theisgen |
---|---|
date | Sat May 02 11:27:04 2020 +0100 (2020-05-02) |
parents | 6e8b1bcb30e2 |
children | 15650f5d595b |
line diff
1.1 --- a/perl-fcgi/receipt Thu Jan 24 11:33:03 2019 +0100 1.2 +++ b/perl-fcgi/receipt Sat May 02 11:27:04 2020 +0100 1.3 @@ -1,23 +1,24 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="perl-fcgi" 1.7 -VERSION="0.77" 1.8 +VERSION="0.79" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Perl/CPAN Module FCGI" 1.11 +SHORT_DESC="Perl Module FCGI." 1.12 MAINTAINER="nneul@neulinger.org" 1.13 LICENSE="other" 1.14 # Open Market vendor specific, looks BSD'ish 1.15 +WEB_SITE="https://metacpan.org/release/FCGI/" 1.16 + 1.17 +SOURCE="FCGI" 1.18 +TARBALL="$SOURCE-$VERSION.tar.gz" 1.19 +WGET_URL="https://www.cpan.org/modules/by-module/FCGI/$TARBALL" 1.20 + 1.21 DEPENDS="perl" 1.22 BUILD_DEPENDS="perl" 1.23 -SOURCE="FCGI" 1.24 -TARBALL="$SOURCE-$VERSION.tar.gz" 1.25 -WEB_SITE="https://metacpan.org/release/FCGI/" 1.26 -WGET_URL="http://www.cpan.org/authors/id/E/ET/ETHER/$TARBALL" 1.27 1.28 # Rules to configure and make the package. 1.29 compile_rules() 1.30 { 1.31 - cd $src 1.32 perl Makefile.PL && 1.33 make && 1.34 make DESTDIR=$DESTDIR install 1.35 @@ -27,11 +28,9 @@ 1.36 genpkg_rules() 1.37 { 1.38 mkdir -p $fs/usr 1.39 - cp -a $install/usr/lib $fs/usr 1.40 + cp -a $install/usr/lib $fs/usr 1.41 + 1.42 # remove perllocal.pod and .packlist 1.43 - find ${fs} -name perllocal.pod -delete 1.44 - find ${fs} -name .packlist -delete 1.45 - 1.46 - 1.47 + find $fs -name perllocal.pod -delete 1.48 + find $fs -name .packlist -delete 1.49 } 1.50 -