use
5.006;
my
%WriteMakefileArgs
= (
"ABSTRACT"
=>
"A Generic Assertion checking class"
,
"AUTHOR"
=>
"Kent Fredric <kentnl\@cpan.org>"
,
"CONFIGURE_REQUIRES"
=> {
"ExtUtils::MakeMaker"
=> 0
},
"DISTNAME"
=>
"Generic-Assertions"
,
"EXE_FILES"
=> [],
"LICENSE"
=>
"perl"
,
"MIN_PERL_VERSION"
=>
"5.006"
,
"NAME"
=>
"Generic::Assertions"
,
"PREREQ_PM"
=> {
"Carp"
=> 0,
"strict"
=> 0,
"warnings"
=> 0
},
"TEST_REQUIRES"
=> {
"ExtUtils::MakeMaker"
=> 0,
"File::Spec"
=> 0,
"Test::Fatal"
=> 0,
"Test::More"
=>
"0.89"
,
"Test::Warnings"
=> 0
},
"VERSION"
=>
"0.001000"
,
"test"
=> {
"TESTS"
=>
"t/*.t t/00-compile/*.t"
}
);
my
%FallbackPrereqs
= (
"Carp"
=> 0,
"ExtUtils::MakeMaker"
=> 0,
"File::Spec"
=> 0,
"Test::Fatal"
=> 0,
"Test::More"
=>
"0.89"
,
"Test::Warnings"
=> 0,
"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
);