From: Vincent Pit Date: Sun, 4 Oct 2009 08:49:19 +0000 (+0200) Subject: Build the $name and the main $file from $dist X-Git-Tag: v0.03~20 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fwith.git;a=commitdiff_plain;h=92d1f33e8b22024917bf5456a7ec598908a1888e Build the $name and the main $file from $dist --- diff --git a/Makefile.PL b/Makefile.PL index 953f578..66203b0 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -6,6 +6,11 @@ use ExtUtils::MakeMaker; my $dist = 'with'; +(my $name = $dist) =~ s{-}{::}g; + +(my $file = $dist) =~ s{-}{/}g; +$file = "lib/$file.pm"; + my %PREREQ_PM = ( 'Carp' => 0, 'Filter::Util::Call' => 0, @@ -33,17 +38,17 @@ my %META = ( ); WriteMakefile( - NAME => 'with', + NAME => $name, AUTHOR => 'Vincent Pit ', LICENSE => 'perl', - VERSION_FROM => 'lib/with.pm', - ABSTRACT_FROM => 'lib/with.pm', + VERSION_FROM => $file, + ABSTRACT_FROM => $file, PL_FILES => {}, PREREQ_PM => \%PREREQ_PM, MIN_PERL_VERSION => 5.009004, META_MERGE => \%META, dist => { - PREOP => 'pod2text lib/with.pm > $(DISTVNAME)/README', + PREOP => "pod2text $file > \$(DISTVNAME)/README", COMPRESS => 'gzip -9f', SUFFIX => 'gz' }, clean => {