X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=bb4a768f349e9d776b5eeaeeb9dc1938f2891b06;hb=254ae9b36d4bdcc79ab4a2dacd3d717b5cea1f9e;hp=be831928004549d58a78c0d97582ec351819f082;hpb=feaf2ede1be5dde7634742c2c0532b1b28d56361;p=perl%2Fmodules%2FTest-Valgrind.git diff --git a/Makefile.PL b/Makefile.PL index be83192..bb4a768 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -7,7 +7,7 @@ use ExtUtils::MakeMaker; BEGIN { eval { require Config }; die 'OS unsupported' if $@; - Config->import(qw/%Config/); + Config->import(qw<%Config>); eval { require File::Spec }; die 'OS unsupported' if $@; } @@ -85,7 +85,7 @@ my %META = ( }, 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", @@ -93,21 +93,21 @@ my %META = ( ); WriteMakefile( - NAME => $name, - AUTHOR => 'Vincent Pit ', - LICENSE => 'perl', - VERSION_FROM => $file, - ABSTRACT_FROM => $file, - OPTIMIZE => '-g', - C => \@C, - PREREQ_PM => \%PREREQ_PM, - MIN_PERL_VERSION => 5.006, - META_MERGE => \%META, - dist => { - PREOP => "pod2text $file > \$(DISTVNAME)/README", - COMPRESS => 'gzip -9f', SUFFIX => 'gz', - }, - clean => { - FILES => "$dist-* Makefile.bak *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt" - }, + NAME => $name, + AUTHOR => 'Vincent Pit ', + LICENSE => 'perl', + VERSION_FROM => $file, + ABSTRACT_FROM => $file, + OPTIMIZE => '-g', + C => \@C, + PREREQ_PM => \%PREREQ_PM, + MIN_PERL_VERSION => '5.006', + 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" + }, );