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