use strict; use warnings; use Module::Build; my $builder = Module::Build->new( module_name => 'Getopt::Alt', license => 'perl', dist_author => 'Ivan Wills ', dist_version_from => 'lib/Getopt/Alt.pm', requires => { 'perl' => 5.008, 'version' => 0, 'Config::Any' => 0, 'Moose' => 0, 'parent' => 0, }, build_requires => { 'Test::More' => 0, 'Test::NoWarnings' => 0, }, recommends => { 'Test::Spelling' => 0, 'Test::Perl::Critic' => 0, 'Test::Kwalitee' => 0, 'Pod::Coverage' => 0, }, add_to_cleanup => [ 'Getopt-Alt-*' ], create_makefile_pl => 'traditional', create_license => 1, meta_merge => { resources => { repository => 'git://github.com/ivanwills/Getopt-Alt.git', bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Getopt-Alt', }, }, ); $builder->create_build_script();