-use inc::Module::Install 0.91;
+use strict;
+use warnings FATAL => 'all';
use 5.008001;
+use ExtUtils::MakeMaker;
+(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
use ExtUtils::Depends;
+my $pkg = ExtUtils::Depends->new('Devel::Declare', 'B::Hooks::OP::Check');
-name 'Devel-Declare';
-all_from 'lib/Devel/Declare.pm';
+my %TEST_DEPS = (
+ 'B::Hooks::OP::Check' => '0.19',
+ 'Test::More' => '0.88',
+ 'Test::Requires' => '0',
+);
-requires 'Scalar::Util' => 1.11; # set_prototype appeared in this version
-requires 'B::Hooks::OP::Check' => '0.19';
-requires 'B::Hooks::EndOfScope' => '0.05';
-requires 'Sub::Name';
+# have to do this since old EUMM dev releases miss the eval $VERSION line
+my $mymeta_works = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.5707 };
-build_requires 'B::Hooks::OP::Check' => '0.19';
+*MY::postamble = sub {
+ my ($self, %extra) = @_;
+ join('', %extra) if keys %extra;
+} if not &MY::postamble;
-# minimum version that works on Win32+gcc
-configure_requires 'ExtUtils::Depends' => 0.302;
+WriteMakefile(
+ NAME => 'Devel::Declare',
+ AUTHOR => ['Matt S Trout - <mst@shadowcat.co.uk> - original author'],
+ VERSION_FROM => 'lib/Devel/Declare.pm',
+ MIN_PERL_VERSION => '5.008001',
-# minimum version that depends on ExtUtils::Depends 0.302
-configure_requires 'B::Hooks::OP::Check' => '0.19';
+ CONFIGURE_REQUIRES => {
+ # minimum version that works on Win32+gcc
+ 'ExtUtils::Depends' => 0.302,
-test_requires 'Test::More' => '0.88';
-test_requires 'Test::Requires' => '0';
+ # minimum version that depends on ExtUtils::Depends 0.302
+ 'B::Hooks::OP::Check' => '0.19',
+ },
-# r/w: p5sagit@git.shadowcat.co.uk:Devel-Declare.git
-repository 'git://git.shadowcat.co.uk/p5sagit/Devel-Declare.git';
+ PREREQ_PM => {
+ 'Scalar::Util' => 1.11, # set_prototype appeared in this version
+ 'B::Hooks::OP::Check' => '0.19',
+ 'B::Hooks::EndOfScope' => '0.05',
+ 'Sub::Name' => 0,
+ ($mymeta_works ? () : (%TEST_DEPS)),
+ },
-postamble(<<'EOM');
-$(OBJECT) : stolen_chunk_of_toke.c
-EOM
+ $mymeta_works ? (BUILD_REQUIRES => \%TEST_DEPS) : (),
-my $pkg = ExtUtils::Depends->new('Devel::Declare', 'B::Hooks::OP::Check');
+ META_MERGE => {
+ dynamic_config => 0,
-WriteMakefile(
- dist => {
- PREOP => 'pod2text lib/Devel/Declare.pm >README'
- },
- $pkg->get_makefile_vars,
+ resources => {
+ # r/w: p5sagit@git.shadowcat.co.uk:Devel-Declare.git
+ repository => 'git://git.shadowcat.co.uk/p5sagit/Devel-Declare.git',
+ homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Devel-Declare.git',
+ },
+ },
+
+ C => [ 'stolen_chunk_of_toke.c' ],
+ XS => { 'Declare.xs' => 'Declare.c' },
+ postamble => { '' => '$(OBJECT) : stolen_chunk_of_toke.c' },
+
+ $pkg->get_makefile_vars,
);
+