X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fsubs-auto.git;a=blobdiff_plain;f=Makefile.PL;h=06d1465742c67541f2b931dfe0e1e1f832508ec6;hp=96ef2564bd0e090be38d649ed57ec2dac0c625d4;hb=5ef39c09620625331c2f3747c4f6223bd56fd17a;hpb=e75c64d7d6ffe63f58d5284671bf22f73acd0a1a diff --git a/Makefile.PL b/Makefile.PL index 96ef256..06d1465 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -6,6 +6,11 @@ use ExtUtils::MakeMaker; my $dist = 'subs-auto'; +(my $name = $dist) =~ s{-}{::}g; + +(my $file = $dist) =~ s{-}{/}g; +$file = "lib/$file.pm"; + my %PREREQ_PM = ( 'Carp' => 0, 'Symbol' => 0, @@ -31,17 +36,17 @@ my %META = ( ); WriteMakefile( - NAME => 'subs::auto', + NAME => $name, AUTHOR => 'Vincent Pit ', LICENSE => 'perl', - VERSION_FROM => 'lib/subs/auto.pm', - ABSTRACT_FROM => 'lib/subs/auto.pm', + VERSION_FROM => $file, + ABSTRACT_FROM => $file, PL_FILES => {}, PREREQ_PM => \%PREREQ_PM, MIN_PERL_VERSION => 5.010, META_MERGE => \%META, dist => { - PREOP => 'pod2text lib/subs/auto.pm > $(DISTVNAME)/README', + PREOP => "pod2text $file > \$(DISTVNAME)/README", COMPRESS => 'gzip -9f', SUFFIX => 'gz' }, clean => {