X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=757785dc06b45182f068a2f3f7f85815608e7c45;hb=d2f67439faac5cd969f7c220ee3c12aa6190c539;hp=8579e58fbfb37d95af2f2e31ef58d13e618fe398;hpb=0b8872adbd6b71c9ca9e944e555b84383fb928cd;p=perl%2Fmodules%2FLinux-SysInfo.git diff --git a/Makefile.PL b/Makefile.PL index 8579e58..757785d 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -8,6 +8,17 @@ die 'OS unsupported' unless $^O && $^O eq 'linux'; my $dist = 'Linux-SysInfo'; +(my $name = $dist) =~ s{-}{::}g; + +(my $file = $dist) =~ s{-}{/}g; +$file = "lib/$file.pm"; + +my %PREREQ_PM = ( + 'Exporter' => 0, + 'XSLoader' => 0, + 'base' => 0, +); + my %META = ( configure_requires => { 'ExtUtils::MakeMaker' => 0, @@ -15,30 +26,29 @@ 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/?p=perl/modules/$dist.git", + repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git", }, ); WriteMakefile( - NAME => 'Linux::SysInfo', + NAME => $name, AUTHOR => 'Vincent Pit ', LICENSE => 'perl', - VERSION_FROM => 'lib/Linux/SysInfo.pm', - ABSTRACT_FROM => 'lib/Linux/SysInfo.pm', + VERSION_FROM => $file, + ABSTRACT_FROM => $file, PL_FILES => {}, - PREREQ_PM => { - 'Exporter' => 0, - 'XSLoader' => 0, - }, + PREREQ_PM => \%PREREQ_PM, MIN_PERL_VERSION => 5.006, META_MERGE => \%META, dist => { - PREOP => 'pod2text lib/Linux/SysInfo.pm > $(DISTVNAME)/README', + PREOP => "pod2text $file > \$(DISTVNAME)/README", COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => {