You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
979 B
30 lines
979 B
use Module::Build qw();
|
|
my $builder = Module::Build->new(
|
|
module_name => 'Sipwise-Base',
|
|
license => 'GPL_3',
|
|
dist_author => 'Lars Dieckow <ldieckow@sipwise.com>',
|
|
dist_version_from => 'lib/Sipwise/Base.pm',
|
|
configure_requires => {
|
|
'Module::Build' => '0.4004',
|
|
},
|
|
test_requires => {
|
|
'Moose::Util::TypeConstraints' => 0,
|
|
'Test::DescribeMe' => 0,
|
|
'Test::More' => '0.88',
|
|
'Test::Spelling' => 0,
|
|
},
|
|
requires => {
|
|
'autodie' => 0,
|
|
'Module::Runtime' => 0,
|
|
'Moose' => 2,
|
|
'MooseX::Method::Signatures' => 0,
|
|
'parent' => 0,
|
|
'perl5i::2' => 0,
|
|
'strictures' => 1,
|
|
'TryCatch' => 0,
|
|
'utf8' => 0,
|
|
},
|
|
add_to_cleanup => ['Sipwise-Base-*'],
|
|
);
|
|
$builder->create_build_script;
|