Added fields to Makefile.PL

This commit is contained in:
Per Carlson
2014-11-10 23:17:15 +01:00
parent 9d7d1e78de
commit 5025224c3d
2 changed files with 11 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
NEXT
o Added AUTHOR, LICENSE and ABSTRACT fields to Makefile.PL
o Fixed 'Artistic' typo in Makefile.PL
0.08
o applied patches by Per Carlson:
- don't die on 1st error, rather collect them and

View File

@@ -3,7 +3,7 @@
#
# Copyright (c) 2007-2014 T. v.Dein <tom |AT| cpan.org>.
# All Rights Reserved. Std. disclaimer applies.
# Artificial License, same as perl itself. Have fun.
# Artistic License, same as perl itself. Have fun.
#
use ExtUtils::MakeMaker;
@@ -11,6 +11,12 @@ use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Data::Validate::Struct',
VERSION_FROM => 'Struct.pm',
ABSTRACT => 'Validate recursive hash structures',
LICENSE => 'perl',
AUTHOR => [
'Thomas v.Dein <tom@cpan.org>',
'Per Carlson <pelle@cpan.org>',
],
clean => { FILES => '*~ */*~' },
PREREQ_PM => {
'Regexp::Common' => 0,