|
use 5.012;
my %WriteMakefileArgs = (
"ABSTRACT" => "format structured address data according to various global/country rules" ,
"AUTHOR" => "Ed Freyfogle" ,
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Geo-Address-Formatter" ,
"LICENSE" => "perl" ,
"MIN_PERL_VERSION" => "5.012" ,
"NAME" => "Geo::Address::Formatter" ,
"PREREQ_PM" => {
"Clone" => "0.47" ,
"Data::Dumper" => 0,
"File::Basename" => 0,
"File::Find::Rule" => 0,
"Ref::Util" => "0.204" ,
"Ref::Util::XS" => "0.117" ,
"Scalar::Util" => 0,
"Text::Hogan" => "2.03" ,
"Try::Catch" => 0,
"YAML::LibYAML" => "0.903.0"
},
"TEST_REQUIRES" => {
"File::Slurper" => 0,
"File::Spec" => 0,
"Test::Exception" => 0,
"Test::More" => "0.88" ,
"Test::NoWarnings" => 0,
"Test::Warn" => 0
},
"VERSION" => "1.9986" ,
"test" => {
"TESTS" => "t/blackbox/*.t t/unit/*.t"
}
);
my %FallbackPrereqs = (
"Clone" => "0.47" ,
"Data::Dumper" => 0,
"File::Basename" => 0,
"File::Find::Rule" => 0,
"File::Slurper" => 0,
"File::Spec" => 0,
"Ref::Util" => "0.204" ,
"Ref::Util::XS" => "0.117" ,
"Scalar::Util" => 0,
"Test::Exception" => 0,
"Test::More" => "0.88" ,
"Test::NoWarnings" => 0,
"Test::Warn" => 0,
"Text::Hogan" => "2.03" ,
"Try::Catch" => 0,
"YAML::LibYAML" => "0.903.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 );
|