X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FPackage-Variant.git;a=blobdiff_plain;f=Makefile.PL;h=9dda482833a93ea4dc2c886e7dae265ea3603248;hp=1962edbc6443149a51d90312ba19e291a06c8886;hb=master;hpb=a206c5e94967aedc8750fe6d094872a8422d4178 diff --git a/Makefile.PL b/Makefile.PL index 1962edb..9dda482 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,13 +5,13 @@ my %META = ( name => 'Package-Variant', prereqs => { test => { requires => { - 'Test::Fatal' => 0, + 'Test::Fatal' => '0', }, }, runtime => { requires => { - 'perl' => 5.006, - 'strictures' => 1, - 'Carp' => 0, - 'Import::Into' => 1, + 'perl' => '5.006', + 'strictures' => '2.000000', + 'Carp' => '0', + 'Import::Into' => '1.000000', 'Module::Runtime' => '0.013', }, }, }, @@ -29,15 +29,13 @@ my %META = ( }, }, no_index => { directory => [ 't', 'xt', ], package => [ 'string' ] }, - - realclean => { FILES => [ 'Distar/', 'MANIFEST*' ] }, ); my %MM_ARGS = (); ## BOILERPLATE ############################################################### require ExtUtils::MakeMaker; -(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; +(do './maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; # have to do this since old EUMM dev releases miss the eval $VERSION line my $eumm_version = eval $ExtUtils::MakeMaker::VERSION;