wok annotate perl-params-validate/receipt @ rev 17495

Add pyaudio
author Paul Issott <paul@slitaz.org>
date Sun Jan 04 11:37:00 2015 +0000 (2015-01-04)
parents 84e5f2e10ea6
children 3d257ce86aef
rev   line source
pascal@9281 1 # SliTaz package receipt.
pascal@9281 2
pascal@9281 3 PACKAGE="perl-params-validate"
pascal@9281 4 VERSION="0.95"
pascal@9281 5 CATEGORY="development"
pascal@9281 6 SHORT_DESC="Params::Validate module is a Perl extension."
pascal@9281 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14702 8 LICENSE="GPL"
pascal@9281 9 DEPENDS="perl"
pascal@9281 10 BUILD_DEPENDS="perl"
pascal@9281 11 SOURCE="Params-Validate"
pascal@9281 12 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@9281 13 WEB_SITE="http://cpan.org/"
pascal@9281 14 WGET_URL="http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/$TARBALL"
pascal@9281 15
pascal@9281 16 # Rules to configure and make the package.
pascal@9281 17 compile_rules()
pascal@9281 18 {
pascal@9281 19 cd $src
pascal@9281 20 perl Build.PL &&
pascal@14702 21 ./Build --destdir $DESTDIR install
pascal@9281 22 }
pascal@9281 23
pascal@9281 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@9281 25 genpkg_rules()
pascal@9281 26 {
pascal@9281 27 mkdir -p $fs/usr
pascal@14702 28 cp -a $install/usr/lib $fs/usr
pascal@9281 29 }
pascal@9281 30