avoid needing . in @INC in dev mode
[p5sagit/lib-with-preamble.git] / Makefile.PL
CommitLineData
dcd0209b 1use strict;
2use warnings FATAL => 'all';
f9b6d637 3use 5.008001;
dcd0209b 4use ExtUtils::MakeMaker;
caa22087 5(do './maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
dcd0209b 6
7WriteMakefile(
c929b89e 8 NAME => 'lib::with::preamble',
f9b6d637 9 VERSION_FROM => 'lib/lib/with/preamble.pm',
dcd0209b 10 PM_FILTER => 'perl my/filter',
52be5e25 11 MIN_PERL_VERSION => '5.008001',
4686b841 12 PREREQ_PM => {
13 'PerlIO::via::dynamic' => '0.02',
14 'File::Spec' => '0',
15 },
42253b17 16 META_MERGE => {
17 'meta-spec' => { version => 2 },
18 dynamic_config => 0,
19
20 resources => {
21 # r/w: p5sagit@git.shadowcat.co.uk:lib-with-preamble.git
22 repository => {
23 url => 'git://git.shadowcat.co.uk/p5sagit/lib-with-preamble.git',
24 web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/lib-with-preamble.git',
25 type => 'git',
26 },
27 bugtracker => {
28 mailto => 'bug-lib-with-preamble@rt.cpan.org',
29 web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=lib-with-preamble',
30 },
31 },
32 },
33
dcd0209b 34);