5 use ExtUtils::MakeMaker;
9 # Fork emulation got "fixed" in 5.10.1
10 if ($^O eq 'MSWin32' && "$]" < 5.010_001) {
11 push @DEFINES, '-DXSH_FORKSAFE=0';
14 @DEFINES = (DEFINE => join ' ', @DEFINES) if @DEFINES;
16 my $dist = 're-engine-Plugin';
18 (my $name = $dist) =~ s{-}{::}g;
25 configure_requires => {
26 'ExtUtils::MakeMaker' => 0,
29 'ExtUtils::MakeMaker' => 0,
35 bugtracker => "http://rt.cpan.org/Dist/Display.html?Name=$dist",
36 homepage => "http://search.cpan.org/dist/$dist/",
37 license => 'http://dev.perl.org/licenses/',
38 repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git",
43 "\x{C6}var Arnfj\x{F6}r\x{F0} Bjarmason <avar\@cpan.org>",
44 'Vincent Pit <perl@profvince.com>',
47 my $AUTHOR = $ExtUtils::MakeMaker::VERSION < 6.58 ? $AUTHORS[0]
54 ABSTRACT_FROM => 'Plugin.pod',
55 VERSION_FROM => 'Plugin.pm',
58 PREREQ_PM => \%PREREQ_PM,
59 MIN_PERL_VERSION => '5.010',
62 PREOP => 'pod2text -u Plugin.pod > $(DISTVNAME)/README',
63 COMPRESS => 'gzip -9f', SUFFIX => 'gz'
66 FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
69 TESTS => 't/*.t t/*/*.t t/*/*/*.t',