]> git.vpit.fr Git - perl/modules/Regexp-Wildcards.git/blob - Makefile.PL
Give an explicit value to dynamic_config
[perl/modules/Regexp-Wildcards.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 my $dist = 'Regexp-Wildcards';
6
7 my %META = (
8  configure_requires => {
9   'ExtUtils::MakeMaker' => 0,
10  },
11  build_requires => {
12   'ExtUtils::MakeMaker' => 0,
13   'Test::More'          => 0,
14  },
15  dynamic_config => 0,
16  resources => {
17   bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist",
18   homepage   => "http://search.cpan.org/dist/$dist/",
19   license    => 'http://dev.perl.org/licenses/',
20   repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git",
21  },
22 );
23
24 WriteMakefile(
25     NAME             => 'Regexp::Wildcards',
26     AUTHOR           => 'Vincent Pit <perl@profvince.com>',
27     LICENSE          => 'perl',
28     VERSION_FROM     => 'lib/Regexp/Wildcards.pm',
29     ABSTRACT_FROM    => 'lib/Regexp/Wildcards.pm',
30     PL_FILES         => {},
31     PREREQ_PM        => {
32         'Carp'           => 0,
33         'Text::Balanced' => 0,
34     },
35     MIN_PERL_VERSION => 5.006,
36     META_MERGE       => \%META,
37     dist             => {
38         PREOP    => 'pod2text lib/Regexp/Wildcards.pm > $(DISTVNAME)/README',
39         COMPRESS => 'gzip -9f', SUFFIX => 'gz'
40     },
41     clean            => {
42         FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
43     },
44 );