X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=1077f48dcdb6198c433cc90d4153492c41a33979;hb=f21949d5fdbd19b7b90d67cf9ac28bc8627dde37;hp=721d8fc26b92550c31bfb21934bcb948d3e694ee;hpb=8572221e98cb4c52e78f1a046f47a6e63ac88347;p=p5sagit%2FApp-FatPacker.git diff --git a/Makefile.PL b/Makefile.PL index 721d8fc..1077f48 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,6 +2,8 @@ use strict; use warnings FATAL => 'all'; use ExtUtils::MakeMaker; +use 5.008000; + (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; WriteMakefile( @@ -13,13 +15,43 @@ WriteMakefile( ], META_MERGE => { + 'meta-spec' => { version => '2' }, + dynamic_config => 0, resources => { # r/w: p5sagit@git.shadowcat.co.uk:App-FatPacker.git - repository => "git://git.shadowcat.co.uk/p5sagit/App-FatPacker.git", - homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/App-FatPacker.git', + repository => { + url => 'git://git.shadowcat.co.uk/p5sagit/App-FatPacker.git', + web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/App-FatPacker.git', + type => 'git', + }, + bugtracker => { + mailto => 'bug-App-FatPacker-Metadata@rt.cpan.org', + web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=App-FatPacker', + }, }, - requires => { - perl => 5.8.0, + prereqs => { + runtime => { + requires => { + # B::perlstring was added in B 1.01 (perl 5.8.0) + perl => '5.008000', + 'B' => '1.01', + 'Cwd' => '0', + 'File::Copy' => '0', + 'File::Find' => '0', + 'File::Path' => '0', + 'File::Spec::Functions' => '0', + 'File::Spec::Unix' => '0', + 'Getopt::Long' => '0', + }, + }, + test => { + requires => { + 'File::Basename' => '0', + 'File::Spec' => '0', + 'File::Temp' => '0', + 'Test::More' => '0.82', + }, + }, }, }, );