]> git.vpit.fr Git - perl/modules/Sub-Nary.git/blobdiff - Makefile.PL
Update VPIT::TestHelpers to 15e8aee3
[perl/modules/Sub-Nary.git] / Makefile.PL
index 8a0b419a9963c7c79a32fbd2813006fc66818c08..395e59ee3b82625ee6c9cbd78832d4e87fe31541 100644 (file)
@@ -1,4 +1,4 @@
-use 5.008001;
+use 5.008_001;
 
 use strict;
 use warnings;
@@ -28,7 +28,7 @@ my %META = (
  },
  dynamic_config => 0,
  resources => {
-  bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist",
+  bugtracker => "http://rt.cpan.org/Dist/Display.html?Name=$dist",
   homepage   => "http://search.cpan.org/dist/$dist/",
   license    => 'http://dev.perl.org/licenses/',
   repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git",
@@ -36,22 +36,22 @@ my %META = (
 );
 
 WriteMakefile(
   NAME             => $name,
   AUTHOR           => 'Vincent Pit <perl@profvince.com>',
   LICENSE          => 'perl',
   VERSION_FROM     => $file,
   ABSTRACT_FROM    => $file,
   PL_FILES         => {},
   PREREQ_PM        => \%PREREQ_PM,
   MIN_PERL_VERSION => 5.008001,
   META_MERGE       => \%META,
   dist             => {
-        PREOP    => "pod2text $file > \$(DISTVNAME)/README",
-        COMPRESS => 'gzip -9f', SUFFIX => 'gz'
   },
   clean            => {
-        FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
   }
+ NAME             => $name,
+ AUTHOR           => 'Vincent Pit <perl@profvince.com>',
+ LICENSE          => 'perl',
+ VERSION_FROM     => $file,
+ ABSTRACT_FROM    => $file,
+ PL_FILES         => {},
+ PREREQ_PM        => \%PREREQ_PM,
MIN_PERL_VERSION => '5.008001',
+ META_MERGE       => \%META,
+ dist             => {
+  PREOP    => "pod2text -u $file > \$(DISTVNAME)/README",
+  COMPRESS => 'gzip -9f', SUFFIX => 'gz'
+ },
+ clean            => {
+  FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
+ }
 );
 
 1;