X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=3771f8a8982ee1a8c4396401b9970d54ec71dc98;hb=e5a5af6b61ef81ecce94f31e88335aa90de230f6;hp=4b66b8e7ffd55adda57fd3c4c8418794466cac01;hpb=74a7df2b7a7a4209d4f40b052e9e354e3a167e1b;p=p5sagit%2FSafe-Isa.git diff --git a/Makefile.PL b/Makefile.PL index 4b66b8e..3771f8a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,7 +2,7 @@ use strict; use warnings FATAL => 'all'; use 5.008001; use ExtUtils::MakeMaker; -(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; +(do './maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; my %WriteMakefileArgs = ( NAME => 'Safe::Isa', @@ -27,6 +27,7 @@ my %WriteMakefileArgs = ( }, META_ADD => { + 'meta-spec' => { version => 2 }, prereqs => { configure => { requires => { @@ -40,10 +41,13 @@ my %WriteMakefileArgs = ( perl => '5.006', }, }, + test => { + requires => { + 'Test::More' => '0', + }, + }, }, }, - - realclean => { FILES => [ 'Distar/', 'MANIFEST*' ] }, ); my $eumm_version = eval $ExtUtils::MakeMaker::VERSION;