wok annotate perl-cgi/receipt @ rev 17974

scilab: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 18 00:25:23 2015 +0200 (2015-04-18)
parents b768ede0c5cb
children 20661c276bcf
rev   line source
pascal@14698 1 # SliTaz package receipt.
pascal@14698 2
pascal@14698 3 PACKAGE="perl-cgi"
pascal@14698 4 VERSION="3.63"
pascal@14698 5 CATEGORY="development"
pascal@14698 6 SHORT_DESC="CGI module is a Perl extension."
pascal@14698 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14702 8 LICENSE="GPL"
pascal@14698 9 DEPENDS="perl"
pascal@14698 10 BUILD_DEPENDS="perl"
pascal@14698 11 SOURCE="CGI.pm"
pascal@14698 12 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@14698 13 WEB_SITE="http://cpan.org/"
pascal@14698 14 WGET_URL="http://search.cpan.org/CPAN/authors/id/M/MA/MARKSTOS/$TARBALL"
pascal@14698 15
pascal@14698 16 # Rules to configure and make the package.
pascal@14698 17 compile_rules()
pascal@14698 18 {
pascal@14698 19 cd $src
pascal@14698 20 perl Makefile.PL &&
pascal@14698 21 make &&
pascal@14698 22 make install DESTDIR=$DESTDIR
pascal@14698 23 }
pascal@14698 24
pascal@14698 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@14698 26 genpkg_rules()
pascal@14698 27 {
pascal@14698 28 mkdir -p $fs/usr
pascal@14698 29 cp -a $install/usr/lib $fs/usr
pascal@14698 30 }
pascal@14698 31