use strict; use warnings; use Module::Build; my $builder = Module::Build->new( module_name => 'Math::ODE', license => 'perl', dist_author => 'Jonathan Leto ', dist_version_from => 'lib/Math/ODE.pm', dist_abstract => 'Solve N-th Order Differential Equations', build_requires => { 'Test::More' => 0, 'Data::Dumper' => 0, 'Carp' => 0, }, add_to_cleanup => [ 'Math::ODE-*' ], create_makefile_pl => 'traditional', ); $builder->create_build_script();