X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FThread-Cleanup.git;a=blobdiff_plain;f=Makefile.PL;h=fdeb0b1111f59c85b85756065cb52166cdcbddc5;hp=d54e1e08d1ff9dfd03ad7fad5c7799c8463c083a;hb=HEAD;hpb=d88364af37eb10467d33930800710a6edbe0544d diff --git a/Makefile.PL b/Makefile.PL index d54e1e0..fdeb0b1 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -6,6 +6,11 @@ use ExtUtils::MakeMaker; my $dist = 'Thread-Cleanup'; +(my $name = $dist) =~ s{-}{::}g; + +(my $file = $dist) =~ s{-}{/}g; +$file = "lib/$file.pm"; + my %PREREQ_PM = ( 'XSLoader' => 0, 'threads' => '1.07', @@ -21,9 +26,9 @@ my %META = ( 'threads::shared' => '0.91', %PREREQ_PM, }, - dynamic_config => 0, + dynamic_config => 1, 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", @@ -31,20 +36,20 @@ my %META = ( ); WriteMakefile( - NAME => 'Thread::Cleanup', - AUTHOR => 'Vincent Pit ', - LICENSE => 'perl', - VERSION_FROM => 'lib/Thread/Cleanup.pm', - ABSTRACT_FROM => 'lib/Thread/Cleanup.pm', - PL_FILES => {}, - PREREQ_PM => \%PREREQ_PM, - MIN_PERL_VERSION => 5.008, - META_MERGE => \%META, - dist => { - PREOP => 'pod2text lib/Thread/Cleanup.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.008', + 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" + } );