Release commit for 1.004001
[p5sagit/strictures.git] / Makefile.PL
index 3bebaae..2704d2b 100644 (file)
@@ -1,9 +1,17 @@
+use strict;
+use warnings FATAL => 'all';
 use ExtUtils::MakeMaker;
 
+(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
+
 WriteMakefile(
   NAME => 'strictures',
   VERSION_FROM => 'lib/strictures.pm',
-  ABSTRACT_FROM => 'lib/strictures.pm',
-  AUTHOR => do { local (@ARGV) = 'AUTHOR'; <> },
-  LICENSE => 'perl',
+
+  META_ADD => {
+    resources => {
+      # r/w: p5sagit@git.shadowcat.co.uk:strictures.git
+      repository => 'git://git.shadowcat.co.uk/p5sagit/strictures.git',
+    },
+  },
 );