X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fwith.git;a=blobdiff_plain;f=Makefile.PL;h=66203b0caa268e5c9626034ef161082da33be086;hp=953f57895905918ed8ac3d0e48d3cefdb15e7991;hb=92d1f33e8b22024917bf5456a7ec598908a1888e;hpb=b02c8b9901366830eaec3e39ad3683e9fa5b387b 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 => {