X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fwith.git;a=blobdiff_plain;f=Makefile.PL;h=b28dab70997711717001a6b29aec5f1d8f8b0ba8;hp=953f57895905918ed8ac3d0e48d3cefdb15e7991;hb=HEAD;hpb=b02c8b9901366830eaec3e39ad3683e9fa5b387b diff --git a/Makefile.PL b/Makefile.PL index 953f578..b28dab7 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,4 @@ -use 5.009004; +use 5.009_004; use strict; use warnings; @@ -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, @@ -25,7 +30,7 @@ my %META = ( }, dynamic_config => 0, resources => { - bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist", + bugtracker => "http://rt.cpan.org/Dist/Display.html?Name=$dist", homepage => "http://search.cpan.org/dist/$dist/", license => 'http://dev.perl.org/licenses/', repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git", @@ -33,20 +38,20 @@ my %META = ( ); WriteMakefile( - NAME => 'with', - AUTHOR => 'Vincent Pit ', - LICENSE => 'perl', - VERSION_FROM => 'lib/with.pm', - ABSTRACT_FROM => 'lib/with.pm', - PL_FILES => {}, - PREREQ_PM => \%PREREQ_PM, - MIN_PERL_VERSION => 5.009004, - META_MERGE => \%META, - dist => { - PREOP => 'pod2text lib/with.pm > $(DISTVNAME)/README', - COMPRESS => 'gzip -9f', SUFFIX => 'gz' - }, - clean => { - FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt" - }, + NAME => $name, + AUTHOR => 'Vincent Pit ', + LICENSE => 'perl', + VERSION_FROM => $file, + ABSTRACT_FROM => $file, + PL_FILES => {}, + PREREQ_PM => \%PREREQ_PM, + MIN_PERL_VERSION => '5.009004', + META_MERGE => \%META, + dist => { + PREOP => "pod2text -u $file > \$(DISTVNAME)/README", + COMPRESS => 'gzip -9f', SUFFIX => 'gz' + }, + clean => { + FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt" + }, );