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