use strict; use warnings; use ExtUtils::MakeMaker 6.30; my %WriteMakefileArgs = ( "ABSTRACT" => "L plugins for ARJONES", "AUTHOR" => "Andrew Jones ", "BUILD_REQUIRES" => { "English" => 0, "Test::More" => 0 }, "CONFIGURE_REQUIRES" => { "ExtUtils::MakeMaker" => "6.30" }, "DISTNAME" => "Dist-Zilla-PluginBundle-ARJONES", "EXE_FILES" => [], "LICENSE" => "perl", "NAME" => "Dist::Zilla::PluginBundle::ARJONES", "PREREQ_PM" => { "Dist::Zilla" => "2.100922", "Dist::Zilla::App::Command::cover" => 0, "Dist::Zilla::App::Command::perltidy" => 0, "Dist::Zilla::Plugin::EOLTests" => 0, "Dist::Zilla::Plugin::GithubMeta" => 0, "Dist::Zilla::Plugin::PodWeaver" => 0, "Dist::Zilla::Plugin::Test::Kwalitee" => 0, "Dist::Zilla::Plugin::Test::Perl::Critic" => 0, "Dist::Zilla::Plugin::Test::Pod::No404s" => 0, "Dist::Zilla::Plugin::Test::PodSpelling" => 0, "Dist::Zilla::Plugin::Test::Portability" => 0, "Dist::Zilla::PluginBundle::Basic" => 0, "Dist::Zilla::PluginBundle::Git" => 0, "Dist::Zilla::Role::PluginBundle::Easy" => 0, "Moose" => 0, "Moose::Autobox" => 0, "Pod::Coverage::TrustPod" => 0, "Pod::Elemental::Transformer::List" => 0, "Pod::Weaver::Config::Assembler" => 0, "Test::Perl::Critic" => 0, "Test::Pod" => "1.41", "Test::Pod::Coverage" => "1.08", "strict" => 0, "warnings" => 0 }, "VERSION" => "1.113460", "test" => { "TESTS" => "t/*.t" } ); unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) { my $br = delete $WriteMakefileArgs{BUILD_REQUIRES}; my $pp = $WriteMakefileArgs{PREREQ_PM}; for my $mod ( keys %$br ) { if ( exists $pp->{$mod} ) { $pp->{$mod} = $br->{$mod} if $br->{$mod} > $pp->{$mod}; } else { $pp->{$mod} = $br->{$mod}; } } } delete $WriteMakefileArgs{CONFIGURE_REQUIRES} unless eval { ExtUtils::MakeMaker->VERSION(6.52) }; WriteMakefile(%WriteMakefileArgs);