properly set v2 metadata!
[p5sagit/Import-Into.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 => 'Import::Into',
9   VERSION_FROM => 'lib/Import/Into.pm',
10   PREREQ_PM => { },
11   LICENSE => 'perl',
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
29   },
30 );