forked from evalEmpire/method-signatures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.PL
55 lines (44 loc) · 1.45 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
49
50
51
52
53
54
55
#!/usr/bin/perl -w
use 5.008001;
use Module::Build;
my $build = Module::Build->new(
module_name => 'Method::Signatures',
license => 'perl',
recursive_test_files => 1,
configure_requires => {
'Module::Build' => '0.26',
},
build_requires => {
'Module::Build' => '0.26',
'Test::More' => '0.82',
'Test::Builder' => '0.82',
'Test::Warn' => '0.10',
'Test::Exception' => '0.29',
},
requires => {
'perl' => '5.8.1',
'Devel::Pragma' => '0.40',
'Devel::Declare' => '0.006002',
'Devel::Declare::MethodInstaller::Simple' => '0.006002',
'Devel::BeginLift' => '0.001001',
'Const::Fast' => '0.006',
PPI => '1.203',
'Data::Alias' => '1.08',
'Any::Moose' => '0.11',
Mouse => '0.64',
'Sub::Name' => '0.03',
},
recommends => {
'Moose' => '0.96',
},
dist_author => 'Michael G Schwern <schwern@pobox.com>',
meta_merge => {
resources => {
license => 'http://dev.perl.org/licenses/',
bugtracker =>
'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Method-Signatures',
repository => 'https://github.com/schwern/method-signatures/tree',
},
},
);
$build->create_build_script;