-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathBuild.PL
27 lines (23 loc) · 1.38 KB
/
Build.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!perl
use Module::Build;
my $build = Module::Build->new(
dist_version => '0.1',
module_name => "Slim",
license => "perl",
build_requires => {
'Test::More' => '>= 0.90',
'Test::Class' => '>= 0.30',
'Pod::Coverage' => '>= 0.20',
'Devel::Cover' => '>= 0.65',
'Test::Exception' => '>= 0.27',
},
requires => {
'Net::Server' => '>= 0.01',
'Moose' => ">= 0.90",
'namespace::autoclean' => '>= 0.09',
'Text::CharWidth' => '>= 0.04',
'Exception::Class' => '>= 1.29',
'threads' => '>= 1.20',
},
);
$build->create_build_script();