wok annotate perl-sha1/receipt @ rev 5419

ecore: update build_depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue May 04 09:45:55 2010 +0200 (2010-05-04)
parents
children be0f13ed59d5
rev   line source
pascal@1598 1 # SliTaz package receipt.
pascal@1598 2
pascal@1598 3 PACKAGE="perl-sha1"
pascal@1598 4 VERSION="2.11"
pascal@1598 5 CATEGORY="development"
pascal@1598 6 SHORT_DESC=" Digest::SHA1 module is a Perl extension."
pascal@1598 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@1598 8 DEPENDS="perl"
pascal@1598 9 BUILD_DEPENDS="perl"
pascal@1598 10 SOURCE="Digest-SHA1"
pascal@1598 11 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@1598 12 WEB_SITE="http://cpan.org/"
pascal@1598 13 WGET_URL="http://cpan.org/authors/id/G/GA/GAAS/$TARBALL"
pascal@1598 14
pascal@1598 15 # Rules to configure and make the package.
pascal@1598 16 compile_rules()
pascal@1598 17 {
pascal@1598 18 cd $src
pascal@1598 19 perl Makefile.PL
pascal@1598 20 make
pascal@1598 21 make DESTDIR=$PWD/_pkg install
pascal@1598 22 }
pascal@1598 23
pascal@1598 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1598 25 genpkg_rules()
pascal@1598 26 {
pascal@1598 27 mkdir -p $fs/usr
pascal@1598 28 cp -a $_pkg/usr/lib $fs/usr
pascal@1598 29 }
pascal@1598 30