use strict; use warnings; use Module::Build; my $builder = Module::Build->new( module_name => 'POE::Component::IRC::Plugin::CPAN::Info', license => 'perl', dist_author => 'Zoffix Znet ', dist_version_from => 'lib/POE/Component/IRC/Plugin/CPAN/Info.pm', build_requires => { 'Test::More' => 0, }, requires => { Carp => 1.04, POE => 0.9999, 'POE::Component::IRC::Plugin' => 0.09, 'POE::Component::CPAN::SQLite::Info' => 0.06, }, add_to_cleanup => [ 'POE-Component-IRC-Plugin-CPAN-Info-*' ], create_makefile_pl => 'traditional', ); $builder->create_build_script();