Write a modern Makefile.PL
authorMarius Gavrilescu <marius@ieval.ro>
Fri, 17 Jul 2015 10:32:47 +0000 (13:32 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Fri, 17 Jul 2015 12:31:32 +0000 (15:31 +0300)
Makefile.PL

index d9ab6a05b65ea94cef1cba211bd16855a4f810b2..c55cdaf12987cf7cc3e201c32094ae1d0d3d4223 100644 (file)
@@ -1,11 +1,20 @@
 use ExtUtils::MakeMaker;
 
 WriteMakefile(
-    'NAME'             => 'Pod::Constants',
-    'VERSION_FROM'     => "Constants.pm",
-    'PREREQ_PM'                => { Pod::Parser => 1.13,
-                            Test::Simple => 0.18,
-                          },
-    ABSTRACT_FROM   => 'Constants.pm',
-    AUTHOR          => 'Sam Vilain <sam@vilain.net>',
+       NAME             => 'Pod::Constants',
+       VERSION_FROM     => 'lib/Pod/Constants.pm',
+       ABSTRACT_FROM    => 'lib/Pod/Constants.pm',
+       AUTHOR           => 'Sam Vilain <sam@vilain.net>',
+       MIN_PERL_VERSION => '5.6.2',
+       LICENSE          => 'artistic_2',
+       SIGN             => 1,
+       PREREQ_PM => {
+               qw/Pod::Parser  1.13/,
+       },
+       META_ADD         => {
+               dynamic_config => 0,
+               resources      => {
+                       repository => 'https://git.ieval.ro/?p=pod-constants.git',
+               },
+       }
 );
This page took 0.010594 seconds and 4 git commands to generate.