X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=087e0a4c69448611d1f07cfb8c5cdbbce213976c;hb=b6ffd07fd28818afacfb3eac681ee1b938e1adfb;hp=689b672f6d5dce2822605b50bf616b49972f3ef9;hpb=2c6c056ca8cd8a4d362a8d3b01eed0a7bd146bd7;p=perl%2Fmodules%2FThread-Cleanup.git diff --git a/Makefile.PL b/Makefile.PL index 689b672..087e0a4 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -6,6 +6,16 @@ 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', +); + my %META = ( configure_requires => { 'ExtUtils::MakeMaker' => 0, @@ -14,30 +24,29 @@ my %META = ( 'ExtUtils::MakeMaker' => 0, 'Test::More' => 0, 'threads::shared' => '0.91', + %PREREQ_PM, }, + dynamic_config => 0, resources => { bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist", homepage => "http://search.cpan.org/dist/$dist/", license => 'http://dev.perl.org/licenses/', - repository => "http://git.profvince.com/?p=perl/modules/$dist.git", + repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git", }, ); WriteMakefile( - NAME => 'Thread::Cleanup', + NAME => $name, AUTHOR => 'Vincent Pit ', LICENSE => 'perl', - VERSION_FROM => 'lib/Thread/Cleanup.pm', - ABSTRACT_FROM => 'lib/Thread/Cleanup.pm', + VERSION_FROM => $file, + ABSTRACT_FROM => $file, PL_FILES => {}, - PREREQ_PM => { - 'XSLoader' => 0, - 'threads' => '1.07', - }, + PREREQ_PM => \%PREREQ_PM, MIN_PERL_VERSION => 5.008, META_MERGE => \%META, dist => { - PREOP => 'pod2text lib/Thread/Cleanup.pm > $(DISTVNAME)/README', + PREOP => "pod2text $file > \$(DISTVNAME)/README", COMPRESS => 'gzip -9f', SUFFIX => 'gz' }, clean => {