|
use 5.006;
my %WriteMakefileArgs = (
"ABSTRACT" => "tidy perl files in Komodo with a project rc" ,
"AUTHOR" => "Christian Walde <walde.christian\@googlemail.com>" ,
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Perl-Tidy-Komodo" ,
"EXE_FILES" => [
"bin/perltidy_ko"
],
"LICENSE" => "unrestricted" ,
"MIN_PERL_VERSION" => "5.006" ,
"NAME" => "Perl::Tidy::Komodo" ,
"PREREQ_PM" => {
"File::chdir" => 0,
"Perl::Tidy" => 0,
"strictures" => 0
},
"TEST_REQUIRES" => {
"Capture::Tiny" => 0,
"File::Slurp" => 0,
"File::Spec" => 0,
"File::Temp" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Test::InDistDir" => 0,
"Test::More" => 0,
"strict" => 0,
"warnings" => 0
},
"VERSION" => "1.151340" ,
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"Capture::Tiny" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Slurp" => 0,
"File::Spec" => 0,
"File::Temp" => 0,
"File::chdir" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Perl::Tidy" => 0,
"Test::InDistDir" => 0,
"Test::More" => 0,
"strict" => 0,
"strictures" => 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 );
|