use
5.016000;
my
%WriteMakefileArgs
= (
"ABSTRACT"
=>
"Perl interface to Typesense search engine."
,
"AUTHOR"
=>
"Curtis \"Ovid\" Poe <ovid\@allaroundtheworld.fr>"
,
"CONFIGURE_REQUIRES"
=> {
"ExtUtils::MakeMaker"
=> 0
},
"DISTNAME"
=>
"Search-Typesense"
,
"LICENSE"
=>
"perl"
,
"MIN_PERL_VERSION"
=>
"5.016000"
,
"NAME"
=>
"Search::Typesense"
,
"PREREQ_PM"
=> {
"Carp"
=> 0,
"Mojolicious"
=>
"9.11"
,
"Moo"
=>
"2.005_000"
,
"Type::Tiny"
=>
"1.011_011"
},
"TEST_REQUIRES"
=> {
"ExtUtils::MakeMaker"
=> 0,
"File::Spec"
=> 0,
"Test::More"
=> 0,
"Test::Most"
=>
"0.37"
},
"VERSION"
=>
"0.05"
,
"test"
=> {
"TESTS"
=>
"t/*.t"
}
);
my
%FallbackPrereqs
= (
"Carp"
=> 0,
"ExtUtils::MakeMaker"
=> 0,
"File::Spec"
=> 0,
"Mojolicious"
=>
"9.11"
,
"Moo"
=>
"2.005_000"
,
"Test::More"
=> 0,
"Test::Most"
=>
"0.37"
,
"Type::Tiny"
=>
"1.011_011"
);
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
);