X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=f5c64f9cd2468e80730cb291d24ede34a6ae516a;hb=8c96f6ee2785b5faaa2e12302ff4424d85f7d44f;hp=9b4d0e1b7334b0326d66e1096ea6b1010bd3650c;hpb=f2af37cdc0cba13d4e828c743f1be9e7c50a4214;p=p5sagit%2FApp-FatPacker.git diff --git a/Makefile.PL b/Makefile.PL index 9b4d0e1..f5c64f9 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( @@ -14,6 +16,7 @@ WriteMakefile( META_MERGE => { 'meta-spec' => { version => '2' }, + dynamic_config => 0, resources => { # r/w: p5sagit@git.shadowcat.co.uk:App-FatPacker.git repository => { @@ -26,8 +29,29 @@ WriteMakefile( web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=App-FatPacker', }, }, - requires => { - perl => '5.008000', + 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', + }, + }, }, }, );