From: Vincent Pit Date: Sun, 4 Oct 2009 08:36:25 +0000 (+0200) Subject: Build the $name and the main $file from $dist X-Git-Tag: v0.10~21 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FSub-Prototype-Util.git;a=commitdiff_plain;h=7f02e327153bdc618f6e79e005b63b56ad142132 Build the $name and the main $file from $dist --- diff --git a/Makefile.PL b/Makefile.PL index 98961b3..f86b254 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -6,6 +6,11 @@ use ExtUtils::MakeMaker; my $dist = 'Sub-Prototype-Util'; +(my $name = $dist) =~ s{-}{::}g; + +(my $file = $dist) =~ s{-}{/}g; +$file = "lib/$file.pm"; + my %PREREQ_PM = ( 'Carp' => 0, 'Exporter' => 0, @@ -32,17 +37,17 @@ my %META = ( ); WriteMakefile( - NAME => 'Sub::Prototype::Util', + NAME => $name, AUTHOR => 'Vincent Pit ', LICENSE => 'perl', - VERSION_FROM => 'lib/Sub/Prototype/Util.pm', - ABSTRACT_FROM => 'lib/Sub/Prototype/Util.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/Sub/Prototype/Util.pm > $(DISTVNAME)/README', + PREOP => "pod2text $file > \$(DISTVNAME)/README", COMPRESS => 'gzip -9f', SUFFIX => 'gz' }, clean => {