X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=1fd1cbeac7b38c4b105c53731cbeab3cb087b299;hb=d8e5d54068b89a5b18cfd3a38c8c9f38a1c54df1;hp=b9fdbfa9711427df9e1ea334b1665c51e9845a6f;hpb=db81d362a1901dbeccf6063a39e86b35b2838875;p=p5sagit%2FFunction-Parameters.git diff --git a/Makefile.PL b/Makefile.PL index b9fdbfa..1fd1cbe 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,3 +1,4 @@ +use 5.014; use strict; use warnings; use ExtUtils::MakeMaker; @@ -18,13 +19,22 @@ WriteMakefile( }, PREREQ_PM => { 'Carp' => 0, - 'B::Hooks::EndOfScope' => 0, 'XSLoader' => 0, - 'bytes' => 0, 'warnings' => 0, 'strict' => 0, }, - MIN_PERL_VERSION => '5.12.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)' }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'Function-Parameters-*' }, );