use strict; use warnings; use Module::Build; my $builder = Module::Build->new( module_name => 'REST::Utils', dist_abstract => 'Utility functions for REST applications', dist_author => 'Jaldhar H. Vyas ', license => 'perl', dist_version_from => 'lib/REST/Utils.pm', build_requires => { 'Test::More' => 0, 'Test::WWW::Mechanize::CGI' => 0, }, requires => { 'perl' => 5.008, }, add_to_cleanup => [ 'REST-Utils-*' ], create_makefile_pl => 'traditional', sign => 1, meta_merge => { resources => { repository => 'http://github.com/jaldhar/REST-Utils', homepage => 'http://jaldhar.github.com/REST-Utils', }, }, ); $builder->create_build_script();