X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=350112b09153824371a643eb4dfde41721370793;hb=332d3b1aa9c375c71d6eb9bd33779a9e94083d9a;hp=5ae1d12e48ebabf5947f666bce8720391bf85fc8;hpb=abf009bab0c414e3ea5727abc168a1b0be5fd4f6;p=perl%2Fmodules%2FLinux-SysInfo.git diff --git a/Makefile.PL b/Makefile.PL index 5ae1d12..350112b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,3 +1,5 @@ +use 5.006; + use strict; use warnings; use ExtUtils::MakeMaker; @@ -14,11 +16,12 @@ my %META = ( 'ExtUtils::MakeMaker' => 0, 'Test::More' => 0, }, + 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", }, ); @@ -32,14 +35,15 @@ WriteMakefile( PREREQ_PM => { 'Exporter' => 0, 'XSLoader' => 0, + 'base' => 0, }, - MIN_PERL_VERSION => 5.005, + 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" }, );