add travis config
[p5sagit/Eval-WithLexicals.git] / Makefile.PL
index a3db42a..b24d5be 100644 (file)
@@ -12,12 +12,12 @@ my %META = (
     test => {
       requires => {
         'Test::More'  => 0.94,
-        'strictures'  => 1,
       },
     },
     runtime => {
       requires => {
         'Moo' => '0.009006',
+        'strictures'  => 1,
         'perl' => 5.008,
       },
     },
@@ -38,15 +38,16 @@ my %META = (
     directory => [ 't', 'xt' ]
   },
   x_authority => 'cpan:MSTROUT',
+  dynamic_config => 0,
 );
 
 my %MM_ARGS = (
   EXE_FILES => [ 'bin/tinyrepl' ],
 );
 
-##############################################################################
+## 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;
@@ -55,8 +56,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 }
@@ -83,3 +86,4 @@ delete $MM_ARGS{CONFIGURE_REQUIRES}
   if $eumm_version < 6.51_03;
 
 ExtUtils::MakeMaker::WriteMakefile(%MM_ARGS);
+## END BOILERPLATE ###########################################################