X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=b16b648e7b388431369e4f26b1e0c6404acd4a12;hb=53140d7cd74b07ed74f69faba71df5fde5372014;hp=8537a6edd335bb1d3f783fc91c36b3097ce8dc6f;hpb=3426f55fba3da9c8801930f82107eeac9f1f8339;p=perl%2Fmodules%2FRegexp-Wildcards.git diff --git a/Makefile.PL b/Makefile.PL index 8537a6e..b16b648 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,20 +2,42 @@ use strict; use warnings; use ExtUtils::MakeMaker; +my $dist = 'Regexp-Wildcards'; + +my %META = ( + configure_requires => { + 'ExtUtils::MakeMaker' => 0, + }, + build_requires => { + 'ExtUtils::MakeMaker' => 0, + 'Test::More' => 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%2Fmodules%2F$dist.git", + }, +); + WriteMakefile( - NAME => 'Regexp::Wildcards', - AUTHOR => 'Vincent Pit ', - LICENSE => 'perl', - VERSION_FROM => 'lib/Regexp/Wildcards.pm', - ABSTRACT_FROM => 'lib/Regexp/Wildcards.pm', - PL_FILES => {}, - PREREQ_PM => { - 'Test::More' => 0, + NAME => 'Regexp::Wildcards', + AUTHOR => 'Vincent Pit ', + LICENSE => 'perl', + VERSION_FROM => 'lib/Regexp/Wildcards.pm', + ABSTRACT_FROM => 'lib/Regexp/Wildcards.pm', + PL_FILES => {}, + PREREQ_PM => { + 'Carp' => 0, 'Text::Balanced' => 0, }, - dist => { - PREOP => 'pod2text lib/Regexp/Wildcards.pm > $(DISTVNAME)/README', + MIN_PERL_VERSION => 5.006, + META_MERGE => \%META, + dist => { + PREOP => 'pod2text lib/Regexp/Wildcards.pm > $(DISTVNAME)/README', COMPRESS => 'gzip -9f', SUFFIX => 'gz' }, - clean => { FILES => 'Regexp-Wildcards-*' }, + clean => { + FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt" + }, );