-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.PL
32 lines (29 loc) · 870 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;
my $b = Module::Build->new
(
module_name => 'Acme::Chef',
dist_author => 'Marc-Philip Werner <[email protected]>',
license => 'perl',
meta_merge => {
resources => {
repository => 'https://github.com/mpw96/perl-Acme-Chef',
bugtracker => 'https://github.com/mpw96/perl-Acme-Chef/issues',
}
},
requires => {
'File::Temp' => '0',
},
recommends => {
'Test::Pod' => '1.0',
'Test::Pod::Coverage' => '1.0',
},
script_files => ['script/compilechef', 'script/chef'],
build_requires => {
'Test::More' => 0,
},
configure_requires => {
'Module::Build' => '0.40',
},
create_makefile_pl => 'traditional',
);
$b->create_build_script;