ensure we create a v2 meta file
[p5sagit/Import-Into.git] / Makefile.PL
CommitLineData
38a56c0f 1use strict;
2use warnings FATAL => 'all';
3use 5.008001;
4use ExtUtils::MakeMaker;
5(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
7WriteMakefile(
88c433b3 8 NAME => 'Import::Into',
38a56c0f 9 VERSION_FROM => 'lib/Import/Into.pm',
10 PREREQ_PM => { },
11 LICENSE => 'perl',
bd5c78da 12
13 META_MERGE => {
2ca328a7 14 'meta-spec' => { version => 2 },
bd5c78da 15 dynamic_config => 0,
16
17 resources => {
18 # r/w: p5sagit@git.shadowcat.co.uk:Import-Into.git
19 repository => 'git://git.shadowcat.co.uk/p5sagit/Import-Into.git',
20 homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Import-Into.git',
21 },
22
23 },
38a56c0f 24);