]> git.vpit.fr Git - perl/modules/Linux-SysInfo.git/blobdiff - Makefile.PL
Put prerequisites in their own separate hash
[perl/modules/Linux-SysInfo.git] / Makefile.PL
index 5ae1d12e48ebabf5947f666bce8720391bf85fc8..5febb76d4798c63ce7c64703559f6b88ad9c56f3 100644 (file)
@@ -1,3 +1,5 @@
+use 5.006;
+
 use strict;
 use warnings;
 use ExtUtils::MakeMaker;
@@ -6,6 +8,12 @@ die 'OS unsupported' unless $^O && $^O eq 'linux';
 
 my $dist = 'Linux-SysInfo';
 
+my %PREREQ_PM = (
+ 'Exporter' => 0,
+ 'XSLoader' => 0,
+ 'base'     => 0,
+);
+
 my %META = (
  configure_requires => {
   'ExtUtils::MakeMaker' => 0,
@@ -13,12 +21,14 @@ my %META = (
  build_requires => {
   'ExtUtils::MakeMaker' => 0,
   'Test::More'          => 0,
+  %PREREQ_PM,
  },
+ dynamic_config => 1,
  resources => {
   bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist",
   homepage   => "http://search.cpan.org/dist/$dist/",
   license    => 'http://dev.perl.org/licenses/',
-  repository => "http://git.profvince.com/perl/modules/$dist.git",
+  repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git",
  },
 );
 
@@ -29,17 +39,14 @@ WriteMakefile(
     VERSION_FROM     => 'lib/Linux/SysInfo.pm',
     ABSTRACT_FROM    => 'lib/Linux/SysInfo.pm',
     PL_FILES         => {},
-    PREREQ_PM        => {
-        'Exporter' => 0,
-        'XSLoader' => 0,
-    },
-    MIN_PERL_VERSION => 5.005,
+    PREREQ_PM        => \%PREREQ_PM,
+    MIN_PERL_VERSION => 5.006,
     META_MERGE       => \%META,
     dist             => {
         PREOP    => 'pod2text lib/Linux/SysInfo.pm > $(DISTVNAME)/README',
         COMPRESS => 'gzip -9f', SUFFIX => 'gz',
     },
     clean            => {
-        FILES => "$dist-* *.gcov *.gcda *.gcno cover_db"
+        FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
     },
 );