From: Vincent Pit Date: Sun, 4 Oct 2009 08:12:55 +0000 (+0200) Subject: Build the $name and the main $file from $dist X-Git-Tag: rt63842~12 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FB-RecDeparse.git;a=commitdiff_plain;h=652a332838b75c4830a43da9b28f931a833cdee7 Build the $name and the main $file from $dist --- diff --git a/Makefile.PL b/Makefile.PL index 1b32a32..c27c16c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -6,6 +6,11 @@ use ExtUtils::MakeMaker; my $dist = 'B-RecDeparse'; +(my $name = $dist) =~ s{-}{::}g; + +(my $file = $dist) =~ s{-}{/}g; +$file = "lib/$file.pm"; + my %PREREQ_PM = ( 'B::Deparse' => 0, 'Config' => 0, @@ -32,17 +37,17 @@ my %META = ( ); WriteMakefile( - NAME => 'B::RecDeparse', + NAME => $name, AUTHOR => 'Vincent Pit ', LICENSE => 'perl', - VERSION_FROM => 'lib/B/RecDeparse.pm', - ABSTRACT_FROM => 'lib/B/RecDeparse.pm', + VERSION_FROM => $file, + ABSTRACT_FROM => $file, PL_FILES => {}, PREREQ_PM => \%PREREQ_PM, MIN_PERL_VERSION => 5.008, META_MERGE => \%META, dist => { - PREOP => 'pod2text lib/B/RecDeparse.pm > $(DISTVNAME)/README', + PREOP => "pod2text $file > \$(DISTVNAME)/README", COMPRESS => 'gzip -9f', SUFFIX => 'gz' }, clean => {