wok annotate perl-sha1/receipt @ rev 17274

linux64: update module list
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 25 09:28:27 2014 +0200 (2014-10-25)
parents be0f13ed59d5
children c86e41198e76
rev   line source
pascal@1598 1 # SliTaz package receipt.
pascal@1598 2
pascal@1598 3 PACKAGE="perl-sha1"
slaxemulator@11058 4 VERSION="2.13"
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@14702 8 LICENSE="GPL"
pascal@1598 9 DEPENDS="perl"
pascal@1598 10 BUILD_DEPENDS="perl"
pascal@1598 11 SOURCE="Digest-SHA1"
pascal@1598 12 TARBALL="$SOURCE-$VERSION.tar.gz"
slaxemulator@11058 13 WEB_SITE="http://search.cpan.org/dist/Digest-SHA1/"
pascal@1598 14 WGET_URL="http://cpan.org/authors/id/G/GA/GAAS/$TARBALL"
pascal@1598 15
pascal@1598 16 # Rules to configure and make the package.
pascal@1598 17 compile_rules()
pascal@1598 18 {
pascal@1598 19 cd $src
pascal@1598 20 perl Makefile.PL
pascal@1598 21 make
slaxemulator@11058 22 make DESTDIR=$DESTDIR install
pascal@1598 23 }
pascal@1598 24
pascal@1598 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1598 26 genpkg_rules()
pascal@1598 27 {
pascal@1598 28 mkdir -p $fs/usr
slaxemulator@11058 29 cp -a $install/usr/lib $fs/usr
pascal@1598 30 }
pascal@1598 31