add pragmas to recommended prereq list
[p5sagit/strictures.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use ExtUtils::MakeMaker;
4
5 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
7 WriteMakefile(
8   NAME => 'strictures',
9   VERSION_FROM => 'lib/strictures.pm',
10
11   META_MERGE => {
12     resources => {
13       # r/w: p5sagit@git.shadowcat.co.uk:strictures.git
14       repository => 'git://git.shadowcat.co.uk/p5sagit/strictures.git',
15       homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/strictures.git',
16     },
17
18     recommends => {
19         indirect => 0,
20         multidimensional => 0,
21         'bareword::filehandles' => 0,
22     },
23   },
24 );