use strict; use warnings; use ExtUtils::MakeMaker 6.31; my %WriteMakefileArgs = ( 'ABSTRACT' => 'Build your distributions like FLORA does', 'AUTHOR' => 'Florian Ragwitz ', 'BUILD_REQUIRES' => { 'File::Find' => '0', 'File::Temp' => '0', 'Test::More' => '0' }, 'CONFIGURE_REQUIRES' => { 'ExtUtils::MakeMaker' => '6.31' }, 'DISTNAME' => 'Dist-Zilla-PluginBundle-FLORA', 'EXE_FILES' => [], 'LICENSE' => 'perl', 'NAME' => 'Dist::Zilla::PluginBundle::FLORA', 'PREREQ_PM' => { 'Dist::Zilla::Plugin::Authority' => '0', 'Dist::Zilla::Plugin::AutoPrereq' => '0', 'Dist::Zilla::Plugin::EOLTests' => '0.02', 'Dist::Zilla::Plugin::MetaConfig' => '0', 'Dist::Zilla::Plugin::MetaJSON' => '0', 'Dist::Zilla::Plugin::MetaResources' => '3', 'Dist::Zilla::Plugin::NoTabsTests' => '0', 'Dist::Zilla::Plugin::PodWeaver' => '0', 'Dist::Zilla::Plugin::TaskWeaver' => '0', 'Dist::Zilla::PluginBundle::Classic' => '0', 'Dist::Zilla::PluginBundle::Filter' => '0', 'Dist::Zilla::Role::PluginBundle::Easy' => '0', 'Method::Signatures::Simple' => '0', 'Moose' => '1.00', 'Moose::Util::TypeConstraints' => '0', 'MooseX::Types::Email' => '0', 'MooseX::Types::Moose' => '0', 'MooseX::Types::Structured' => '0.20', 'MooseX::Types::URI' => '0', 'Pod::Weaver::PluginBundle::FLORA' => '0.03', 'namespace::autoclean' => '0' }, 'VERSION' => '0.12', '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);