specify some prereqs (all in core)
[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   MIN_PERL_VERSION => '5.006',
12
13   META_MERGE => {
14     'meta-spec' => { version => 2 },
15     dynamic_config => 0,
16     resources => {
17       # r/w: p5sagit@git.shadowcat.co.uk:Import-Into.git
18       repository => {
19         url => 'git://git.shadowcat.co.uk/p5sagit/Import-Into.git',
20         web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Import-Into.git',
21         type => 'git',
22       },
23       bugtracker => {
24           mailto => 'bug-Import-Into@rt.cpan.org',
25           web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Import-Into',
26       },
27     },
28     prereqs => {
29       runtime => {
30         requires => {
31           'strict' => '0',
32           'warnings' => '0',
33         },
34       },
35       test => {
36         requires => {
37           'Exporter' => '0',
38           'base' => '0',
39           'Test::More' => '0',
40         },
41       },
42     },
43   },
44
45   realclean => { FILES => [ 'Distar/', 'MANIFEST*' ] },
46 );