add minimum perl version to metadata
[p5sagit/lib-with-preamble.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use 5.008001;
4 use ExtUtils::MakeMaker;
5 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
7 WriteMakefile(
8   NAME => 'lib-with-preamble',
9   VERSION_FROM => 'lib/lib/with/preamble.pm',
10   PM_FILTER => 'perl my/filter',
11   MIN_PERL_VERSION => '5.008001',
12   PREREQ_PM => {
13     'PerlIO::via::dynamic' => '0.02',
14     'File::Spec' => '0',
15   },
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
34 );