strictures is a runtime prereq
[p5sagit/Eval-WithLexicals.git] / Makefile.PL
index 233e2ed..8aa7afa 100644 (file)
@@ -12,12 +12,13 @@ my %META = (
     test => {
       requires => {
         'Test::More'  => 0.94,
-        'strictures'  => 1,
       },
     },
     runtime => {
       requires => {
         'Moo' => '0.009006',
+        'strictures'  => 1,
+        'perl' => 5.008,
       },
     },
   },
@@ -43,7 +44,7 @@ my %MM_ARGS = (
   EXE_FILES => [ 'bin/tinyrepl' ],
 );
 
-##############################################################################
+## BOILERPLATE ###############################################################
 require ExtUtils::MakeMaker;
 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
 
@@ -54,8 +55,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 }
@@ -82,3 +85,4 @@ delete $MM_ARGS{CONFIGURE_REQUIRES}
   if $eumm_version < 6.51_03;
 
 ExtUtils::MakeMaker::WriteMakefile(%MM_ARGS);
+## END BOILERPLATE ###########################################################