|
use 5.020;
my %WriteMakefileArgs = (
"ABSTRACT" => "Bible Gateway content conversion to Open Bible Markup Language" ,
"AUTHOR" => "Gryphon Shafer <gryphon\@cpan.org>" ,
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Bible-OBML-Gateway" ,
"LICENSE" => "artistic_2" ,
"MIN_PERL_VERSION" => "5.020" ,
"NAME" => "Bible::OBML::Gateway" ,
"PREREQ_PM" => {
"Bible::OBML" => "2.03" ,
"Bible::Reference" => "1.08" ,
"Mojo::DOM" => 0,
"Mojo::URL" => 0,
"Mojo::UserAgent" => 0,
"Mojo::Util" => 0,
"exact" => "1.14" ,
"exact::class" => "1.10"
},
"TEST_REQUIRES" => {
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Mojo::Collection" => 0,
"Test2::V0" => 0,
"Test::More" => 0,
"strict" => 0,
"warnings" => 0
},
"VERSION" => "2.04" ,
"test" => {
"TESTS" => "t/*.t t/Bible/OBML/*.t"
}
);
my %FallbackPrereqs = (
"Bible::OBML" => "2.03" ,
"Bible::Reference" => "1.08" ,
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Mojo::Collection" => 0,
"Mojo::DOM" => 0,
"Mojo::URL" => 0,
"Mojo::UserAgent" => 0,
"Mojo::Util" => 0,
"Test2::V0" => 0,
"Test::More" => 0,
"exact" => "1.14" ,
"exact::class" => "1.10" ,
"strict" => 0,
"warnings" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs {TEST_REQUIRES};
delete $WriteMakefileArgs {BUILD_REQUIRES};
$WriteMakefileArgs {PREREQ_PM} = \ %FallbackPrereqs ;
}
delete $WriteMakefileArgs {CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
WriteMakefile( %WriteMakefileArgs );
|