X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=3456a070af41e2d97bf060fc93099ce96a6baac6;hb=355a0edef48bb7b9b432cbc08c653802d2331789;hp=51e68a0f32e389d5611ccd0ea812500ab2acfb33;hpb=7a63380c0b53866e900e842840736a040f733eb7;p=p5sagit%2FFunction-Parameters.git diff --git a/Makefile.PL b/Makefile.PL index 51e68a0..3456a07 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,3 +1,4 @@ +use 5.006; use strict; use warnings; use ExtUtils::MakeMaker; @@ -7,18 +8,35 @@ 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 => {}, - PREREQ_PM => { + CONFIGURE_REQUIRES => { + 'ExtUtils::MakeMaker' => '6.56', + }, + LICENSE => 'perl', + PL_FILES => {}, + BUILD_REQUIRES => { + 'Dir::Self' => 0, 'Test::More' => 0, + 'Test::Fatal' => 0, + }, + PREREQ_PM => { + 'Carp' => 0, + 'XSLoader' => 0, 'warnings' => 0, 'strict' => 0, - 'Devel::Declare' => 0, - 'B::Hooks::EndOfScope' => 0, - 'B::Compiling' => 0, }, + MIN_PERL_VERSION => '5.14.0', + META_MERGE => { + 'meta-spec' => { version => 2 }, + resources => { + repository => { + url => 'git://git.shadowcat.co.uk/p5sagit/Function-Parameters', + web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Function-Parameters.git', + type => 'git', + }, + }, + }, + depend => { Makefile => '$(VERSION_FROM)' }, + test => { TESTS => 't/*.t t/foreign/*.t t/foreign/*/*.t' }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'Function-Parameters-*' }, );