]> git.vpit.fr Git - perl/modules/re-engine-Plugin.git/blobdiff - Makefile.PL
Bump copyright year
[perl/modules/re-engine-Plugin.git] / Makefile.PL
index a18580c8e1a59f3d0e06ca533d557b597d3b1a3d..53397f990096c0a32633bce616c78ed08ade9ee6 100644 (file)
@@ -1,25 +1,71 @@
-use 5.009005;
+use 5.010;
+
+use strict;
+use warnings;
 use ExtUtils::MakeMaker;
 
-WriteMakefile(
-    NAME                 => 're::engine::Plugin',
-    AUTHOR        => 'Ævar Arnfjörð Bjarmason <avar@cpan.org>',
-    ABSTRACT_FROM => 'Plugin.pod',
-    VERSION_FROM  => 'Plugin.pm',
-    LICENSE       => 'perl',
-    test          => {
-        TESTS => 't/*.t t/*/*.t t/*/*/*.t',
-    },
+my @DEFINES;
+
+# Fork emulation got "fixed" in 5.10.1
+if ($^O eq 'MSWin32' && "$]" < 5.010_001) {
+ push @DEFINES, '-DXSH_FORKSAFE=0';
+}
+
+@DEFINES = (DEFINE => join ' ', @DEFINES) if @DEFINES;
+
+my $dist = 're-engine-Plugin';
+
+(my $name = $dist) =~ s{-}{::}g;
+
+my %PREREQ_PM = (
+ 'XSLoader' => 0,
 );
 
-sub MY::postamble {
-    return <<END;
-ChangeLog: Makefile
-       git log --pretty=full . >ChangeLog
+my %META = (
+ configure_requires => {
+  'ExtUtils::MakeMaker' => 0,
+ },
+ build_requires => {
+  'ExtUtils::MakeMaker' => 0,
+  'Test::More'          => 0,
+  %PREREQ_PM,
+ },
+ dynamic_config => 1,
+ resources => {
+  bugtracker => "http://rt.cpan.org/Dist/Display.html?Name=$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",
+ },
+);
 
-META.yml: Makefile
-       touch META.yml
+my @AUTHORS = (
+ "\x{C6}var Arnfj\x{F6}r\x{F0} Bjarmason <avar\@cpan.org>",
+ 'Vincent Pit <perl@profvince.com>',
+);
 
-END
-}
+my $AUTHOR = $ExtUtils::MakeMaker::VERSION < 6.58 ? $AUTHORS[0]
+                                                  : \@AUTHORS;
 
+WriteMakefile(
+ NAME             => $name,
+ AUTHOR           => $AUTHOR,
+ LICENSE          => 'perl',
+ ABSTRACT_FROM    => 'Plugin.pod',
+ VERSION_FROM     => 'Plugin.pm',
+ PL_FILES         => {},
+ @DEFINES,
+ PREREQ_PM        => \%PREREQ_PM,
+ MIN_PERL_VERSION => '5.010',
+ META_MERGE       => \%META,
+ dist             => {
+  PREOP    => 'pod2text -u Plugin.pod > $(DISTVNAME)/README',
+  COMPRESS => 'gzip -9f', SUFFIX => 'gz'
+ },
+ clean            => {
+  FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
+ },
+ test             => {
+  TESTS => 't/*.t t/*/*.t t/*/*/*.t',
+ },
+);