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