# SliTaz package receipt.

PACKAGE="perl-sha1"
VERSION="2.13"
CATEGORY="development"
SHORT_DESC=" Digest::SHA1 module is a Perl extension."
MAINTAINER="pascal.bellard@slitaz.org"
DEPENDS="perl"
BUILD_DEPENDS="perl"
SOURCE="Digest-SHA1"
TARBALL="$SOURCE-$VERSION.tar.gz"
WEB_SITE="http://search.cpan.org/dist/Digest-SHA1/"
WGET_URL="http://cpan.org/authors/id/G/GA/GAAS/$TARBALL"

# Rules to configure and make the package.
compile_rules()
{
	cd $src
	perl Makefile.PL
	make
	make DESTDIR=$DESTDIR install
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
	mkdir -p $fs/usr
	cp -a $install/usr/lib $fs/usr
}