also handle undef inputs
[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
6c703264 11 PREREQ_PM => {
12 'Exporter' => '5.57',
13 'Scalar::Util' => 0,
14 },
944651ea 15
6c703264 16 -f 'META.yml' ? () : (
17 META_MERGE => {
18 'meta-spec' => { version => 2 },
19 dynamic_config => 0,
944651ea 20
6c703264 21 resources => {
22 # r/w: p5sagit@git.shadowcat.co.uk:Safe-Isa.git
23 repository => {
24 url => 'git://git.shadowcat.co.uk/p5sagit/Safe-Isa.git',
25 web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Safe-Isa.git',
26 type => 'git',
27 },
28 bugtracker => {
29 mailto => 'bug-Safe-Isa@rt.cpan.org',
30 web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Safe-Isa',
31 },
32 },
944651ea 33 },
6c703264 34 ),
e6995dc6 35);