From: Vincent Pit Date: Sun, 4 Oct 2009 08:42:22 +0000 (+0200) Subject: Build the $name and the main $file from $dist X-Git-Tag: v0.38~6 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=c8441c1cae1f43bfb24e02ef6cdd567bf32deec4 Build the $name and the main $file from $dist --- diff --git a/Makefile.PL b/Makefile.PL index 3d52633..2570329 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -54,6 +54,11 @@ if ($^O eq 'MSWin32' && $^V lt v5.10.1) { my $dist = 'Variable-Magic'; +(my $name = $dist) =~ s{-}{::}g; + +(my $file = $dist) =~ s{-}{/}g; +$file = "lib/$file.pm"; + my %PREREQ_PM = ( 'Carp' => 0, 'Exporter' => 0, @@ -83,18 +88,18 @@ my %META = ( ); WriteMakefile( - NAME => 'Variable::Magic', + NAME => $name, AUTHOR => 'Vincent Pit ', LICENSE => 'perl', - VERSION_FROM => 'lib/Variable/Magic.pm', - ABSTRACT_FROM => 'lib/Variable/Magic.pm', + VERSION_FROM => $file, + ABSTRACT_FROM => $file, PL_FILES => {}, @DEFINES, PREREQ_PM => \%PREREQ_PM, MIN_PERL_VERSION => 5.008, META_MERGE => \%META, dist => { - PREOP => 'pod2text lib/Variable/Magic.pm > $(DISTVNAME)/README', + PREOP => "pod2text $file > \$(DISTVNAME)/README", COMPRESS => 'gzip -9f', SUFFIX => 'gz' }, clean => {