X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=1f0868b8746e45c6cc0d6b568b95c6981cda6645;hb=662657707bf7629915a5bbba9237df019d20a301;hp=1b0f5bbf882acc1d12c35de903f0b6c294623863;hpb=5bf140a10b6d535ec9e96bbaa0db268c92e534a6;p=p5sagit%2FFunction-Parameters.git diff --git a/Makefile.PL b/Makefile.PL index 1b0f5bb..1f0868b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,3 +1,6 @@ +#!perl +# vi: set et sw=4 sts=4: +use 5.006; use strict; use warnings; use ExtUtils::MakeMaker; @@ -7,21 +10,34 @@ 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, + 'strict' => 0, + 'Dir::Self' => 0, + 'Test::More' => 0, + 'Test::Fatal' => 0, }, PREREQ_PM => { - 'Test::More' => 0, - 'warnings' => 0, - 'strict' => 0, - 'Devel::Declare' => 0, - 'B::Hooks::EndOfScope' => 0, 'Carp' => 0, + 'XSLoader' => 0, + 'warnings' => 0, + }, + MIN_PERL_VERSION => '5.14.0', + META_MERGE => { + 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-*' }, );