X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=9dda482833a93ea4dc2c886e7dae265ea3603248;hb=HEAD;hp=9b80d0f5a5ad497619ffd13a8c2864df3ef236e0;hpb=48243f83d39ec7c0d10b6a64d90a121f59995228;p=p5sagit%2FPackage-Variant.git diff --git a/Makefile.PL b/Makefile.PL index 9b80d0f..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; @@ -46,8 +44,10 @@ my $mymeta_broken = $mymeta && $eumm_version < 6.57_07; ($MM_ARGS{NAME} = $META{name}) =~ s/-/::/g; ($MM_ARGS{VERSION_FROM} = "lib/$MM_ARGS{NAME}.pm") =~ s{::}{/}g; -$MM_ARGS{LICENSE} = $META{license} - if $eumm_version >= 6.30; +$META{license} = [ $META{license} ] + if $META{license} && !ref $META{license}; +$MM_ARGS{LICENSE} = $META{license}[0] + if $META{license} && $eumm_version >= 6.30; $MM_ARGS{NO_MYMETA} = 1 if $mymeta_broken; $MM_ARGS{META_ADD} = { 'meta-spec' => { version => 2 }, %META } @@ -74,3 +74,4 @@ delete $MM_ARGS{CONFIGURE_REQUIRES} if $eumm_version < 6.51_03; ExtUtils::MakeMaker::WriteMakefile(%MM_ARGS); +## END BOILERPLATE ###########################################################