ensure we create a v2 meta file
[p5sagit/Safe-Isa.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 => 'Safe::Isa',
9   VERSION_FROM => 'lib/Safe/Isa.pm',
10
11   META_MERGE => {
12     'meta-spec' => { version => 2 },
13     dynamic_config => 0,
14
15     resources => {
16       # r/w: p5sagit@git.shadowcat.co.uk:Safe-Isa.git
17       repository => 'git://git.shadowcat.co.uk/p5sagit/Safe-Isa.git',
18       homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Safe-Isa.git',
19     },
20
21     PREREQ_PM => {
22       'Exporter' => 0,
23       'Scalar::Util' => 0,
24     },
25   },
26 );