version bump
[p5sagit/Function-Parameters.git] / Makefile.PL
index 51e68a0..a8a471f 100644 (file)
@@ -1,3 +1,4 @@
+use 5.014;
 use strict;
 use warnings;
 use ExtUtils::MakeMaker;
@@ -7,17 +8,31 @@ WriteMakefile(
     AUTHOR              => q{Lukas Mai <l.mai@web.de>},
     VERSION_FROM        => 'lib/Function/Parameters.pm',
     ABSTRACT_FROM       => 'lib/Function/Parameters.pm',
-    ($ExtUtils::MakeMaker::VERSION >= 6.3002
-      ? ('LICENSE'=> 'perl')
-      : ()),
-    PL_FILES            => {},
-    PREREQ_PM => {
+    CONFIGURE_REQUIRES => {
+        'ExtUtils::MakeMaker' => '6.56',
+    },
+    LICENSE => 'perl',
+    PL_FILES => {},
+    BUILD_REQUIRES => {
+        'Dir::Self' => 0,
         'Test::More' => 0,
+    },
+    PREREQ_PM => {
+       'Carp' => 0,
+       'XSLoader' => 0,
         'warnings' => 0,
         'strict' => 0,
-        'Devel::Declare' => 0,
-        'B::Hooks::EndOfScope' => 0,
-        'B::Compiling' => 0,
+    },
+    MIN_PERL_VERSION => '5.14.0',
+    META_MERGE => {
+       'meta-spec' => { version => 2 },
+       resources => {
+               repository => {
+                       url => 'git://git.shadowcat.co.uk/p5sagit/Function-Parameters',
+                       web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Function-Parameters.git',
+                       type => 'git',
+               },
+       },
     },
     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
     clean               => { FILES => 'Function-Parameters-*' },