-
Notifications
You must be signed in to change notification settings - Fork 3
/
Build.PL
48 lines (41 loc) · 1.14 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
module_name => 'Apache2::AuthCookieDBI',
license => 'lgpl',
requires => {
'mod_perl2' => 1.999022,
'Apache2::AuthCookie' => 3.08,
'DBI' => 1.40,
'Apache2::Const' => 0,
'Apache2::RequestRec' => 0,
'Apache2::ServerUtil' => 0,
'Carp' => 0,
'Crypt::CBC' => 2.13,
'Date::Calc' => 0,
'Digest::MD5' => 0,
'FindBin' => 0,
},
recommends => {
'Digest::SHA' => 5.47, # If you use DBI_CryptType sha256
},
build_requires => {
'Test::More' => 0.4,
'Digest::SHA' => 5.47,
},
create_makefile_pl => 'traditional',
add_to_cleanup => [
qw( *.tar.gz
MANIFEST.bak
),
],
meta_merge => {
resources =>
{ repository => 'https://github.com/matisse/Apache-AuthCookieDBI', },
},
);
$build->create_build_script();
exit;
__END__
# 'ORIGINAL_AUTHOR' => 'Jacob Davies ([email protected])',