X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=1d0fd94b4588899c3bc7c638023955c86b9e8e80;hb=81c26bb06329658a6299f6d86df8cbaa9748f362;hp=e02d953bfa7345d49a1026e9df5d3e0e99948133;hpb=eafc1dab0ebd73e592fda42a9db18d6d4a64c96b;p=perl%2Fmodules%2FRegexp-Wildcards.git diff --git a/Makefile.PL b/Makefile.PL index e02d953..1d0fd94 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,17 +2,52 @@ use strict; use warnings; use ExtUtils::MakeMaker; +my $dist = 'Regexp-Wildcards'; + +(my $name = $dist) =~ s{-}{::}g; + +(my $file = $dist) =~ s{-}{/}g; +$file = "lib/$file.pm"; + +my %PREREQ_PM = ( + 'Carp' => 0, + 'Scalar::Util' => 0, + 'Text::Balanced' => 0, +); + +my %META = ( + configure_requires => { + 'ExtUtils::MakeMaker' => 0, + }, + build_requires => { + 'ExtUtils::MakeMaker' => 0, + 'Test::More' => 0, + %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%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, - 'Text::Balanced' => 0, - }, - dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, - clean => { FILES => 'Regexp-Wildcards-*' }, + NAME => $name, + AUTHOR => 'Vincent Pit ', + LICENSE => 'perl', + VERSION_FROM => $file, + ABSTRACT_FROM => $file, + PL_FILES => {}, + 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" + }, );