test path of compiling file rather than direct caller
[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     dynamic_config => 0,
14
15     resources => {
16       # r/w: p5sagit@git.shadowcat.co.uk:strictures.git
17       repository => 'git://git.shadowcat.co.uk/p5sagit/strictures.git',
18       homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/strictures.git',
19     },
20
21     recommends => {
22         indirect => 0,
23         multidimensional => 0,
24         'bareword::filehandles' => 0,
25     },
26   },
27 );