diff options
author | seb <seb@pkgsrc.org> | 2009-11-23 23:15:19 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2009-11-23 23:15:19 +0000 |
commit | 43ebd7fefc5b459e69eae3568ec95da50f27da00 (patch) | |
tree | 84d4225f00440593478cf24e79732fee122985f3 /devel/p5-UUID-Tiny/Makefile | |
parent | 7c651ef7d460efb5698654fa1696e26234ca808e (diff) | |
download | pkgsrc-43ebd7fefc5b459e69eae3568ec95da50f27da00.tar.gz |
Initial import of p5-UUID-Tiny version 1.02 in the NetBSD Packages
Collection.
The Perl 5 module UUID::Tiny is a lightweight, low dependency Pure
Perl module for UUID creation and testing. This module provides the
creation of version 1 time based UUIDs (using random multicast MAC
addresses), version 3 MD5 based UUIDs, version 4 random UUIDs, and
version 5 SHA-1 based UUIDs. ATTENTION! UUID::Tiny uses Perl's
rand() to create the basic random numbers, so the created v4 UUIDs
are not cryptographically strong!
Diffstat (limited to 'devel/p5-UUID-Tiny/Makefile')
-rw-r--r-- | devel/p5-UUID-Tiny/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/devel/p5-UUID-Tiny/Makefile b/devel/p5-UUID-Tiny/Makefile new file mode 100644 index 00000000000..4fae8f2182d --- /dev/null +++ b/devel/p5-UUID-Tiny/Makefile @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1.1.1 2009/11/23 23:15:19 seb Exp $ +# + +DISTNAME= UUID-Tiny-1.02 +PKGNAME= p5-${DISTNAME} +#PKGREVISION= 1 +CATEGORIES= devel perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=UUID/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://search.cpan.org/dist/UUID-Tiny/ +COMMENT= Pure Perl UUID Support With Functional Interface + +PKG_DESTDIR_SUPPORT= user-destdir + +USE_LANGUAGES= # empty +PERL5_PACKLIST= auto/UUID/Tiny/.packlist + +DEPENDS+= p5-Digest-MD5-[0-9]*:../../security/p5-Digest-MD5 +DEPENDS+= p5-Digest-SHA1-[0-9]*:../../security/p5-Digest-SHA1 + +.include "../../lang/perl5/module.mk" +.include "../../mk/bsd.pkg.mk" |