properly set v2 metadata!
[p5sagit/Safe-Isa.git] / Makefile.PL
CommitLineData
e6995dc6 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(
dcf9b5b3 8 NAME => 'Safe::Isa',
e6995dc6 9 VERSION_FROM => 'lib/Safe/Isa.pm',
944651ea 10
11 META_MERGE => {
2915a1fb 12 'meta-spec' => { version => 2 },
944651ea 13 dynamic_config => 0,
14
15 resources => {
16 # r/w: p5sagit@git.shadowcat.co.uk:Safe-Isa.git
14c4f098 17 repository => {
18 url => 'git://git.shadowcat.co.uk/p5sagit/Safe-Isa.git',
19 web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Safe-Isa.git',
20 type => 'git',
21 },
22 bugtracker => {
23 mailto => 'bug-Safe-Isa@rt.cpan.org',
24 web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Safe-Isa',
25 },
944651ea 26 },
27
28 PREREQ_PM => {
29 'Exporter' => 0,
30 'Scalar::Util' => 0,
31 },
32 },
e6995dc6 33);