-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
29 lines (27 loc) · 904 Bytes
/
Copy pathBuild.PL
File metadata and controls
29 lines (27 loc) · 904 Bytes
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
use Module::Build;
# See perldoc Module::Build for details of how this works
Module::Build->new
( module_name => 'Mail::Log::Trace',
license => 'perl',
dist_author => 'Daniel Staal - <DStaal@usa.net>',
dist_abstract => 'Traces a message through the mailsystem.',
create_makefile_pl => 'passthrough',
create_readme => 1,
dynamic_config => 0,
requires => {
'perl' => '5.6.1',
'Mail::Log::Exceptions' => 1.0100,
'Mail::Log::Parse::Postfix' => 1.04,
'Scalar::Util' => 0,
},
build_requires => {
'Module::Build' => 0,
'Test::Warn' => 0,
'Test::Exception' => 0,
'Test::Deep' => 0,
'Time::Local' => 0,
},
recommends => {
},
recursive_test_files => 0,
)->create_build_script;