add travis config
[p5sagit/Package-Variant.git] / Makefile.PL
index 9b80d0f..9dda482 100644 (file)
@@ -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 ###########################################################