X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=8717afd4ed4c0dfa24e10df2a01080f8d40a4d46;hb=c3a1287831d94cdac8761970e2f314e4079698ce;hp=8cc864882a707c7d62e42d92b7368ac6e1186958;hpb=7e57a40e954031d8bf89e6db546b7ad807b4707e;p=p5sagit%2FModule-Metadata.git diff --git a/Makefile.PL b/Makefile.PL index 8cc8648..8717afd 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,28 +1,45 @@ use strict; use warnings FATAL => 'all'; use ExtUtils::MakeMaker; +use 5.006; (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; WriteMakefile( NAME => 'Module::Metadata', VERSION_FROM => 'lib/Module/Metadata.pm', + ABSTRACT_FROM => 'lib/Module/Metadata.pm', + LICENSE => 'perl', + MIN_PERL_VERSION => '5.006', PREREQ_PM => { 'Carp' => 0, 'File::Find' => 0, 'File::Spec' => 0, 'IO::File' => 0, 'strict' => 0, + 'warnings' => 0, 'vars' => 0, 'version' => 0.87, 'warnings' => 0, + $] < 5.008 + ? ( 'IO::Scalar' => 0 ) + : () + , }, META_MERGE => { + 'meta-spec' => { version => 2 }, dynamic_config => 0, resources => { # r/w: p5sagit@git.shadowcat.co.uk:Module-Metadata.git - repository => 'git://git.shadowcat.co.uk/p5sagit/Module-Metadata.git', - homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Module-Metadata.git', + repository => { + url => 'git://git.shadowcat.co.uk/p5sagit/Module-Metadata.git', + web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Module-Metadata.git', + type => 'git', + }, + bugtracker => { + mailto => 'bug-Module-Metadata@rt.cpan.org', + web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata', + }, }, }, );