-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
20 lines (17 loc) · 843 Bytes
/
Build.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use strict;
use Module::Build;
my $build =
Module::Build->new( module_name => 'Log::Dispatch::Email::EmailSend',
license => 'perl',
requires => { 'Email::Send' => 2.0,
'Email::Simple::Creator' => 0,
'Log::Dispatch' => 2.0,
'Params::Validate' => 0,
},
build_requires => { 'Email::Send::Test' => 0,
'Module::Build' => 0,
},
sign => 1,
create_makefile_pl => 'passthrough',
);
$build->create_build_script;