add travis config
[p5sagit/Devel-GlobalDestruction-XS.git] / Makefile.PL
index 699df18..eb9adee 100644 (file)
@@ -1,19 +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 => {
+    develop => {
+      requires => {
+        'Test::Pod' => 0,
+      },
+    },
+  },
   resources => {
     repository => {
-      url => 'git://git.shadowcat.co.uk/p5sagit/Devel-GlobalDestruction-XS.git',
-      web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Devel-GlobalDestruction-XS.git',
+      url => 'git://github.com/p5sagit/Devel-GlobalDestruction-XS.git',
+      # git://git.shadowcat.co.uk/p5sagit/Devel-GlobalDestruction-XS.git
+      web => 'http://github.com/p5sagit/Devel-GlobalDestruction-XS',
       type => 'git',
     },
     bugtracker => {
@@ -29,7 +33,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;