be compatible with perl 5.6
[p5sagit/Import-Into.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use ExtUtils::MakeMaker;
4 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
5
6 WriteMakefile(
7   NAME => 'Import::Into',
8   VERSION_FROM => 'lib/Import/Into.pm',
9   PREREQ_PM => { },
10   LICENSE => 'perl',
11
12   META_MERGE => {
13     'meta-spec' => { version => 2 },
14     dynamic_config => 0,
15     resources => {
16       # r/w: p5sagit@git.shadowcat.co.uk:Import-Into.git
17       repository => {
18         url => 'git://git.shadowcat.co.uk/p5sagit/Import-Into.git',
19         web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Import-Into.git',
20         type => 'git',
21       },
22       bugtracker => {
23           mailto => 'bug-Import-Into@rt.cpan.org',
24           web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Import-Into',
25       },
26     },
27
28   },
29 );