X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=443bcee4f1ec100306cd77fa6d5521246db21461;hb=eed8b6fa7cdf13d70c415b8a7f5a266aef08ab2d;hp=3f4bae3ad6647082b302fa0a8f243a6752f48c5d;hpb=a48911904f968b5f66cbcc1bfe3731939f95f338;p=p5sagit%2FModule-Metadata.git diff --git a/Makefile.PL b/Makefile.PL index 3f4bae3..443bcee 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,9 +2,42 @@ use strict; use warnings FATAL => 'all'; use ExtUtils::MakeMaker; -(do 'Author.PL' or die $@) unless -f 'META.yml'; +(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; WriteMakefile( NAME => 'Module::Metadata', - VERSION_FROM => 'lib/Module/Metadata.pm' + VERSION_FROM => 'lib/Module/Metadata.pm', + ABSTRACT_FROM => 'lib/Module/Metadata.pm', + LICENSE => 'perl', + 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 => { + 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', + }, + }, + }, );