]> git.vpit.fr Git - perl/modules/Linux-SysInfo.git/blobdiff - Makefile.PL
base.pm is also a dependency
[perl/modules/Linux-SysInfo.git] / Makefile.PL
index 708db536e93073299df0e0788f139da65788b8a1..efea305d6021e66880f433e29692a723fb736939 100644 (file)
@@ -1,16 +1,48 @@
+use 5.006;
+
 use strict;
 use warnings;
 use ExtUtils::MakeMaker;
 
+die 'OS unsupported' unless $^O && $^O eq 'linux';
+
+my $dist = 'Linux-SysInfo';
+
+my %META = (
+ configure_requires => {
+  'ExtUtils::MakeMaker' => 0,
+ },
+ build_requires => {
+  'ExtUtils::MakeMaker' => 0,
+  'Test::More'          => 0,
+ },
+ 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/?p=perl%2Fmodules%2F$dist.git",
+ },
+);
+
 WriteMakefile(
-    NAME                => 'Linux::SysInfo',
-    AUTHOR              => 'Vincent Pit <perl@profvince.com>',
-    VERSION_FROM        => 'lib/Linux/SysInfo.pm',
-    ABSTRACT_FROM       => 'lib/Linux/SysInfo.pm',
-    PL_FILES            => {},
-    PREREQ_PM => {
-        'Test::More' => 0,
+    NAME             => 'Linux::SysInfo',
+    AUTHOR           => 'Vincent Pit <perl@profvince.com>',
+    LICENSE          => 'perl',
+    VERSION_FROM     => 'lib/Linux/SysInfo.pm',
+    ABSTRACT_FROM    => 'lib/Linux/SysInfo.pm',
+    PL_FILES         => {},
+    PREREQ_PM        => {
+        'Exporter' => 0,
+        'XSLoader' => 0,
+        'base'     => 0,
+    },
+    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 Debian_CPANTS.txt"
     },
-    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
-    clean               => { FILES => 'Linux-SysInfo-*' },
 );