forked from ginzamarkets/Apache2-Authen-OdinAuth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBuild.PL
31 lines (29 loc) · 884 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 5.006;
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Apache2::Authen::OdinAuth',
license => 'perl',
dist_abstract => 'A cookie-based single sign-on system for Apache',
dist_author => q{Maciej Pasternacki <[email protected]>},
dist_version_from => 'lib/Apache2/Authen/OdinAuth.pm',
build_requires => {
'Test::More' => 0,
'Test::Exception' => 0,
},
requires => {
'perl' => 5.006,
'Digest::HMAC' => 0,
'Digest::SHA256' => 0,
'YAML::XS' => 0,
'MIME::Base64' => 3.13,
},
test_requires => {
'Test::Pod' => 0,
'Test::Pod::Coverage' => 0,
},
add_to_cleanup => [ 'Apache2-Authen-OdinAuth-*' ],
create_makefile_pl => 'traditional',
);
$builder->create_build_script();