From: Vincent Pit Date: Sun, 4 Oct 2009 08:44:38 +0000 (+0200) Subject: Build the $name and the main $file from $dist X-Git-Tag: v0.20~13 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=9d3f14c2050bd3630bbea680eac1c8697021b196 Build the $name and the main $file from $dist --- diff --git a/Makefile.PL b/Makefile.PL index 464fe39..42b016a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -20,6 +20,11 @@ if ($^O eq 'MSWin32' && $^V lt v5.10.1) { my $dist = 'indirect'; +(my $name = $dist) =~ s{-}{::}g; + +(my $file = $dist) =~ s{-}{/}g; +$file = "lib/$file.pm"; + my %PREREQ_PM = ( 'XSLoader' => 0, ); @@ -43,18 +48,18 @@ my %META = ( ); WriteMakefile( - NAME => 'indirect', + NAME => $name, AUTHOR => 'Vincent Pit ', LICENSE => 'perl', - VERSION_FROM => 'lib/indirect.pm', - ABSTRACT_FROM => 'lib/indirect.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/indirect.pm > $(DISTVNAME)/README', + PREOP => "pod2text $file > \$(DISTVNAME)/README", COMPRESS => 'gzip -9f', SUFFIX => 'gz' }, clean => {