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