| Revision 2 (by moose, 2009/02/18 14:42:47) |
|---|
use strict; use warnings; use Module::Build; my $builder = Module::Build->new( module_name => 'CSE::Core', license => 'AGPL', dist_author => 'Thomas Fjellstrom <tfjellstrom@shaw.ca>', dist_version_from => 'lib/CSE/Core.pm', build_requires => { 'Test::More' => 0, }, add_to_cleanup => [ 'CSE::Core-*' ], create_makefile_pl => 'traditional', ); $builder->create_build_script();