From: Lukas Mai Date: Sat, 16 Jun 2012 09:24:34 +0000 (+0200) Subject: update Makefile.PL for expected rewrite X-Git-Tag: v0.05_01~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FFunction-Parameters.git;a=commitdiff_plain;h=d71ccb013c52a557bab04e0050aaa75e15c3fefd update Makefile.PL for expected rewrite --- diff --git a/Makefile.PL b/Makefile.PL index 1b0f5bb..ea52471 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -7,21 +7,21 @@ WriteMakefile( AUTHOR => q{Lukas Mai }, VERSION_FROM => 'lib/Function/Parameters.pm', ABSTRACT_FROM => 'lib/Function/Parameters.pm', - ($ExtUtils::MakeMaker::VERSION >= 6.3002 - ? ('LICENSE'=> 'perl') - : ()), - PL_FILES => {}, + CONFIGURE_REQUIRES => { + 'ExtUtils::MakeMaker' => '6.56', + }, + LICENSE => 'perl', + PL_FILES => {}, BUILD_REQUIRES => { - 'Dir::Self' => 0, + 'Dir::Self' => 0, + 'Test::More' => 0, }, PREREQ_PM => { - 'Test::More' => 0, + 'XSLoader' => 0, 'warnings' => 0, 'strict' => 0, - 'Devel::Declare' => 0, - 'B::Hooks::EndOfScope' => 0, - 'Carp' => 0, }, + MIN_PERL_VERSION => '5.12.0', dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'Function-Parameters-*' }, );