update Distar clone url
[p5sagit/Devel-GlobalDestruction-XS.git] / Makefile.PL
index ebf2cfa..a148285 100644 (file)
@@ -1,15 +1,23 @@
 use strict;
 use warnings FATAL => 'all';
 use 5.006;
-use ExtUtils::MakeMaker;
-
-(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
 
 my %META = (
   name => 'Devel-GlobalDestruction-XS',
   license => 'perl_5',
   dynamic_config => 0,
-  prereqs => {},
+  prereqs => {
+    runtime => {
+      requires => {
+        perl => '5.006',
+      },
+    },
+    develop => {
+      requires => {
+        'Test::Pod' => 0,
+      },
+    },
+  },
   resources => {
     repository => {
       url => 'git://github.com/p5sagit/Devel-GlobalDestruction-XS.git',
@@ -30,7 +38,7 @@ 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;