wok annotate perl-datetime-locale/receipt @ rev 11257

iron-linux: Cookutils uses wget -O $SRC/$TARBALL so we can change TARBALL to save source as TARBALL. This needs to be done for iron-linux cause other wise it will just find iron-linux.tar.gz and use the old version.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Nov 07 11:21:08 2011 +0000 (2011-11-07)
parents
children 2d12ebd38be4
rev   line source
pascal@9281 1 # SliTaz package receipt.
pascal@9281 2
pascal@9281 3 PACKAGE="perl-datetime-locale"
pascal@9281 4 VERSION="0.45"
pascal@9281 5 CATEGORY="development"
pascal@9281 6 SHORT_DESC="DateTime::Locale module is a Perl extension."
pascal@9281 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@9281 8 DEPENDS="perl"
pascal@9281 9 BUILD_DEPENDS="perl"
pascal@9281 10 SOURCE="DateTime-Locale"
pascal@9281 11 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@9281 12 WEB_SITE="http://cpan.org/"
pascal@9281 13 WGET_URL="http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/$TARBALL"
pascal@9281 14
pascal@9281 15 # Rules to configure and make the package.
pascal@9281 16 compile_rules()
pascal@9281 17 {
pascal@9281 18 cd $src
pascal@9281 19 perl Makefile.PL &&
pascal@9281 20 make &&
pascal@9281 21 make DESTDIR=$PWD/_pkg 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@9281 28 cp -a $_pkg/usr/lib $fs/usr
pascal@9281 29 }
pascal@9281 30