X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=ffc231cd31e92a7cdb536d0c4593e981e2961fb4;hb=dfdfcbae27f7d60ca4440bf3eaa5aca67e99c476;hp=3bebaae1e94d05495f001c0cae94ff27fa46e359;hpb=394c3a465392be170c22d19d05bb76ad4618007f;p=p5sagit%2Fstrictures.git diff --git a/Makefile.PL b/Makefile.PL index 3bebaae..ffc231c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,9 +1,24 @@ +use strict; +use warnings FATAL => 'all'; use ExtUtils::MakeMaker; +(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; + WriteMakefile( NAME => 'strictures', VERSION_FROM => 'lib/strictures.pm', - ABSTRACT_FROM => 'lib/strictures.pm', - AUTHOR => do { local (@ARGV) = 'AUTHOR'; <> }, - LICENSE => 'perl', + + META_MERGE => { + resources => { + # r/w: p5sagit@git.shadowcat.co.uk:strictures.git + repository => 'git://git.shadowcat.co.uk/p5sagit/strictures.git', + homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/strictures.git', + }, + + recommends => { + indirect => 0, + multidimensional => 0, + 'bareword::filehandles' => 0, + }, + }, );