Fix 8e604fea from being overly specific - qw is readonly everywhere
[p5sagit/strictures.git] / Makefile.PL
CommitLineData
eae006ee 1use strict;
2use warnings FATAL => 'all';
394c3a46 3use ExtUtils::MakeMaker;
4
eae006ee 5(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
394c3a46 7WriteMakefile(
8 NAME => 'strictures',
9 VERSION_FROM => 'lib/strictures.pm',
de111885 10
dfdfcbae 11 META_MERGE => {
77f9ff76 12 dynamic_config => 0,
13
de111885 14 resources => {
15 # r/w: p5sagit@git.shadowcat.co.uk:strictures.git
16 repository => 'git://git.shadowcat.co.uk/p5sagit/strictures.git',
91be28bc 17 homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/strictures.git',
de111885 18 },
dfdfcbae 19
20 recommends => {
21 indirect => 0,
22 multidimensional => 0,
23 'bareword::filehandles' => 0,
24 },
de111885 25 },
394c3a46 26);