add perl to prereq metadata
[p5sagit/Package-Variant.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 => 'Package::Variant',
9   VERSION_FROM => 'lib/Package/Variant.pm',
10   CONFIGURE_REQUIRES => {
11     'ExtUtils::MakeMaker' => '6.55_01', # for BUILD_REQUIRES
12   },
13   BUILD_REQUIRES => { 'Test::Fatal' => 0 },
14   PREREQ_PM => {
15     strictures => 1,
16     Carp => 0,
17     'Import::Into' => 1,
18     'Module::Runtime' => '0.013',
19     'perl' => 5.006,
20   },
21
22   META_MERGE => {
23     'meta-spec' => { version => 2 },
24     dynamic_config => 0,
25
26     resources => {
27       # r/w: p5sagit@git.shadowcat.co.uk:Package-Variant.git
28       repository => {
29         url => 'git://git.shadowcat.co.uk/p5sagit/Package-Variant.git',
30         web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Package-Variant.git',
31         type => 'git',
32       },
33       bugtracker => {
34           mailto => 'bug-Package-Variant@rt.cpan.org',
35           web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Package-Variant',
36       },
37     },
38     no_index => { package => [ 'string' ] },
39   },
40 );