8a007248c05e6f5de887c41901c3ca660f7f6289
[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   MIN_PERL_VERSION => '5.006',
12
13   PREREQ_PM => {
14     'Exporter' => '5.57',
15     'Scalar::Util' => 0,
16   },
17
18   -f 'META.yml' ? () : (
19     META_MERGE => {
20       'meta-spec' => { version => 2 },
21       dynamic_config => 0,
22
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       },
35     },
36   ),
37
38   realclean => { FILES => [ 'Distar/', 'MANIFEST*' ] },
39 );