-
Notifications
You must be signed in to change notification settings - Fork 1
/
Build.PL
31 lines (31 loc) · 1006 Bytes
/
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
28
29
30
31
use Module::Build qw();
my $builder = Module::Build->new(
module_name => 'Sipwise-Base',
license => 'GPL_3',
dist_author => 'Lars Dieckow <[email protected]>',
dist_version_from => 'lib/Sipwise/Base.pm',
configure_requires => {
'Module::Build' => '0.4004',
},
test_requires => {
'Test::More' => '0.88',
},
requires => {
'autodie' => 0,
'parent' => 0,
'perl' => '5.014',
'strictures' => 1,
'TryCatch' => 0,
'utf8' => 0,
},
# these are actually <http://p3rl.org/CPAN::Meta::Spec#develop>,
# but nothing consumes this yet
recommends => {
'bareword::filehandles' => 0,
'indirect' => 0,
'multidimensional' => 0,
'Test::Spelling' => 0,
},
add_to_cleanup => ['Sipwise-Base-*'],
);
$builder->create_build_script;