X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=c35e0d790be1f1eb7a00814b635e8e0e83a13cb3;hb=fe071077337a847d070acc14ca2a480b25a896c8;hp=9ced0d06acb745f4a74342554eb7d9157648971d;hpb=2915a1fbfa9e705c311c6abcf0c3f14fc47223e0;p=p5sagit%2FSafe-Isa.git diff --git a/Makefile.PL b/Makefile.PL index 9ced0d0..c35e0d7 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -8,19 +8,28 @@ WriteMakefile( NAME => 'Safe::Isa', VERSION_FROM => 'lib/Safe/Isa.pm', - META_MERGE => { - 'meta-spec' => { version => 2 }, - dynamic_config => 0, + PREREQ_PM => { + 'Exporter' => '5.57', + 'Scalar::Util' => 0, + }, - resources => { - # r/w: p5sagit@git.shadowcat.co.uk:Safe-Isa.git - repository => 'git://git.shadowcat.co.uk/p5sagit/Safe-Isa.git', - homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Safe-Isa.git', - }, + -f 'META.yml' ? () : ( + META_MERGE => { + 'meta-spec' => { version => 2 }, + dynamic_config => 0, - PREREQ_PM => { - 'Exporter' => 0, - 'Scalar::Util' => 0, + resources => { + # r/w: p5sagit@git.shadowcat.co.uk:Safe-Isa.git + repository => { + url => 'git://git.shadowcat.co.uk/p5sagit/Safe-Isa.git', + web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Safe-Isa.git', + type => 'git', + }, + bugtracker => { + mailto => 'bug-Safe-Isa@rt.cpan.org', + web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Safe-Isa', + }, + }, }, - }, + ), );