pkgsrc-wip/p5-Object-Signature/Makefile
Roman Kulik 56417c0c85 Object::Signature is an abstract base class that you can inherit from in
order to allow your objects to generate unique cryptographic signatures.

The method used to generate the signature is based on Storable and
Digest::MD5. The object is fed to Storable::nfreeze to get a string,
which is then passed to Digest::MD5::md5_hex to get a unique 32
character hexidecimal signature.

WWW: http://search.cpan.org/dist/Object-Signature/
2006-03-07 19:56:12 +00:00

22 lines
773 B
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2006/03/07 19:56:12 kuli0020 Exp $
DISTNAME= Object-Signature-1.03
PKGNAME= p5-${DISTNAME}
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Object/}
MAINTAINER= kuli0020@umn.edu
HOMEPAGE= http://search.cpan.org/dist/Object-Signature/
COMMENT= Generate cryptographic signatures for objects
PERL5_REQD+= 5.6.0
DEPENDS+= p5-Storable>=2.11:../../devel/p5-Storable
DEPENDS+= p5-Digest-MD5>=2.00:../../security/p5-Digest-MD5
DEPENDS+= p5-Test-Simple>=0.47:../../devel/p5-Test-Simple
DEPENDS+= p5-PathTools>=0.80:../../devel/p5-PathTools
DEPENDS+= p5-ExtUtils-AutoInstall>=0.63:../../devel/p5-ExtUtils-AutoInstall
PERL5_PACKLIST= auto/Object/Signature/.packlist
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"