]> git.vpit.fr Git - perl/modules/re-engine-Plugin.git/blob - Makefile.PL
Resurrect the old Changes file
[perl/modules/re-engine-Plugin.git] / Makefile.PL
1 use 5.009005;
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  resources => {
15   bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist",
16   homepage   => "http://search.cpan.org/dist/$dist/",
17   license    => 'http://dev.perl.org/licenses/',
18   repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git",
19  },
20 );
21
22 WriteMakefile(
23     NAME          => 're::engine::Plugin',
24     AUTHOR        => 'Vincent Pit <perl@profvince.com>',
25     LICENSE       => 'perl',
26     ABSTRACT_FROM => 'Plugin.pod',
27     VERSION_FROM  => 'Plugin.pm',
28     PL_FILES         => {},
29     PREREQ_PM        => {
30         'XSLoader' => 0,
31     },
32     MIN_PERL_VERSION => 5.008,
33     META_MERGE       => \%META,
34     dist             => {
35         PREOP    => 'pod2text Plugin.pod > $(DISTVNAME)/README',
36         COMPRESS => 'gzip -9f', SUFFIX => 'gz'
37     },
38     clean            => {
39         FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
40     },
41     test             => {
42         TESTS => 't/*.t t/*/*.t t/*/*/*.t',
43     },
44 );