X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=8713ef90a00dda781223aae4ee3b2572e82b614b;hb=fb3ea8633b25d6fbf244e36c0936ea7d960a85c2;hp=3456a070af41e2d97bf060fc93099ce96a6baac6;hpb=595edbcf92e56b601822a62deddef2758aa7f3b5;p=p5sagit%2FFunction-Parameters.git diff --git a/Makefile.PL b/Makefile.PL index 3456a07..8713ef9 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,3 +1,5 @@ +#!perl +# vi: set et sw=4 sts=4: use 5.006; use strict; use warnings; @@ -14,26 +16,26 @@ WriteMakefile( LICENSE => 'perl', PL_FILES => {}, BUILD_REQUIRES => { + 'strict' => 0, 'Dir::Self' => 0, 'Test::More' => 0, 'Test::Fatal' => 0, }, PREREQ_PM => { - 'Carp' => 0, - 'XSLoader' => 0, + 'Carp' => 0, + 'XSLoader' => 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', - }, - }, + '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' },