wok annotate perl-mathround/receipt @ rev 11946

add perl-mathround
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 01 10:46:31 2012 +0100 (2012-03-01)
parents
children
rev   line source
pascal@11946 1 # SliTaz package receipt.
pascal@11946 2
pascal@11946 3 PACKAGE="perl-mathround"
pascal@11946 4 VERSION="0.06"
pascal@11946 5 CATEGORY="development"
pascal@11946 6 SHORT_DESC="Math::Round module is a Perl extension."
pascal@11946 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@11946 8 DEPENDS="perl"
pascal@11946 9 BUILD_DEPENDS="perl"
pascal@11946 10 SOURCE="Math-Round"
pascal@11946 11 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@11946 12 WEB_SITE="http://search.cpan.org/"
pascal@11946 13 WGET_URL="http://cpan.org/authors/id/G/GR/GROMMEL/$TARBALL"
pascal@11946 14
pascal@11946 15 # Rules to configure and make the package.
pascal@11946 16 compile_rules()
pascal@11946 17 {
pascal@11946 18 cd $src
pascal@11946 19 perl Makefile.PL
pascal@11946 20 make
pascal@11946 21 make DESTDIR=$DESTDIR install
pascal@11946 22 }
pascal@11946 23
pascal@11946 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11946 25 genpkg_rules()
pascal@11946 26 {
pascal@11946 27 mkdir -p $fs/usr
pascal@11946 28 cp -a $install/usr/lib $fs/usr
pascal@11946 29 }
pascal@11946 30