use strict; use warnings; use Module::Build; my $builder = Module::Build->new( module_name => 'App::ZofCMS::Plugin::ImageResize', license => 'perl', dist_author => q|'Zoffix <'zoffix@cpan.org'>|, dist_version_from => 'lib/App/ZofCMS/Plugin/ImageResize.pm', build_requires => { 'Test::More' => 0, }, build_recommends => { 'App::ZofCMS::Test::Plugin' => '0.0104', }, requires => { 'App::ZofCMS::Plugin::Base' => 0.0103, 'Image::Size' => 3.2, 'Image::Resize' => 0.5, 'File::Spec' => 3.3, 'File::Copy' => 2.11, }, add_to_cleanup => [ 'App-ZofCMS-Plugin-ImageResize-*' ], create_makefile_pl => 'traditional', ); $builder->create_build_script();