ensure we create a v2 meta file
[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   MIN_PERL_VERSION => '5.006',
11
12   META_MERGE => {
13     'meta-spec' => { version => 2 },
14     dynamic_config => 0,
15
16     resources => {
17       # r/w: p5sagit@git.shadowcat.co.uk:strictures.git
18       repository => 'git://git.shadowcat.co.uk/p5sagit/strictures.git',
19       homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/strictures.git',
20     },
21
22     recommends => {
23         indirect => 0,
24         multidimensional => 0,
25         'bareword::filehandles' => 0,
26     },
27   },
28 );