wok view perl-fcgi/receipt @ rev 19479

paper-icon-theme: update from git, make package a way smaller (remove HiDPI icons and shrink svg icons)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Nov 01 04:02:18 2016 +0200 (2016-11-01)
parents
children 5e6810e4a860
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-fcgi"
4 VERSION="0.77"
5 CATEGORY="development"
6 SHORT_DESC="Perl/CPAN Module FCGI"
7 MAINTAINER="nneul@neulinger.org"
8 LICENSE="Other"
9 # Open Market vendor specific, looks BSD'ish
10 DEPENDS="perl"
11 BUILD_DEPENDS="perl"
12 SOURCE="FCGI"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WEB_SITE="http://search.cpan.org/dist/FCGI/"
15 WGET_URL="http://www.cpan.org/authors/id/E/ET/ETHER/$TARBALL"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 perl Makefile.PL &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/lib $fs/usr
31 # remove perllocal.pod and .packlist
32 find ${fs} -name perllocal.pod -delete
33 find ${fs} -name .packlist -delete
36 }