From: Vincent Pit Date: Sun, 4 Oct 2009 08:25:37 +0000 (+0200) Subject: Build the $name and the main $file from $dist X-Git-Tag: v0.12~3 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLinux-SysInfo.git;a=commitdiff_plain;h=d2f67439faac5cd969f7c220ee3c12aa6190c539 Build the $name and the main $file from $dist --- diff --git a/Makefile.PL b/Makefile.PL index 5febb76..757785d 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -8,6 +8,11 @@ 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, @@ -33,17 +38,17 @@ my %META = ( ); 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 => \%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 => {