use
5.010;
my
%WriteMakefileArgs
= (
"ABSTRACT"
=>
"Low-Level ASE (Adobe Swatch Exchange) File decoder"
,
"AUTHOR"
=>
"Kent Fredric <kentfredric\@gmail.com>"
,
"CONFIGURE_REQUIRES"
=> {
"ExtUtils::MakeMaker"
=>
"6.30"
},
"DISTNAME"
=>
"Color-Swatch-ASE-Reader"
,
"EXE_FILES"
=> [],
"LICENSE"
=>
"perl"
,
"NAME"
=>
"Color::Swatch::ASE::Reader"
,
"PREREQ_PM"
=> {
"Encode"
=> 0,
"Path::Tiny"
=> 0,
"strict"
=> 0,
"utf8"
=> 0,
"warnings"
=> 0
},
"TEST_REQUIRES"
=> {
"ExtUtils::MakeMaker"
=> 0,
"File::Spec::Functions"
=> 0,
"List::Util"
=> 0,
"Test::Differences"
=> 0,
"Test::More"
=>
"0.89"
,
"version"
=> 0
},
"VERSION"
=>
"0.001002"
,
"test"
=> {
"TESTS"
=>
"t/*.t t/00-compile/*.t"
}
);
my
%FallbackPrereqs
= (
"Encode"
=> 0,
"ExtUtils::MakeMaker"
=> 0,
"File::Spec::Functions"
=> 0,
"List::Util"
=> 0,
"Path::Tiny"
=> 0,
"Test::Differences"
=> 0,
"Test::More"
=>
"0.89"
,
"strict"
=> 0,
"utf8"
=> 0,
"version"
=> 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
);