This repository was archived by the owner on Dec 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBuild.PL
More file actions
55 lines (46 loc) · 1.39 KB
/
Build.PL
File metadata and controls
55 lines (46 loc) · 1.39 KB
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
49
50
51
52
53
54
55
#!/usr/bin/env perl
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
module_name => 'Mite',
license => 'perl',
configure_requires => {
'Module::Build' => 0.42
},
requires => {
'perl' => '5.10.1',
version => '0.77',
Mouse => '1.08',
'Method::Signatures' => '20140224',
'Path::Tiny' => '0.052',
'App::Cmd' => '0.323',
'MouseX::Foreign' => '1.000',
'YAML::XS' => '0.41',
},
build_requires => {
'Test::Sims' => '20130412',
'Test::Most' => '0.31',
'Test::Deep' => '0.110',
'Test::Compile' => '0.24',
'Test::Output' => '1.02',
'Test::FailWarnings' => '0.008',
Fennec => '2.016',
Child => '0.010', # fix for die in eval bug
'File::Copy::Recursive' => '0.38',
'Capture::Tiny' => '0.22',
'Devel::Hide' => '0.0009',
},
recursive_test_files => 1,
create_license => 1,
meta_merge => {
resources => {
bugtracker => 'https://github.com/evalEmpire/Mite/issues',
repository => 'https://github.com/evalEmpire/Mite',
},
no_index => {
package => [qw(MY)],
},
}
);
$build->create_build_script;