X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=1077f48dcdb6198c433cc90d4153492c41a33979;hb=bdb76e3ef26ab5959d804ea5e6ff3f23826f963b;hp=1a4785b1294e1ebf4f5d9f53ab29e34e6ac42ff2;hpb=e1213c6a4b9162b35c4ba382933d23a1f886e4a2;p=p5sagit%2FApp-FatPacker.git diff --git a/Makefile.PL b/Makefile.PL index 1a4785b..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( @@ -32,6 +34,22 @@ WriteMakefile( 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', }, }, },