-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathBuild.PL
48 lines (46 loc) · 1.2 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 Module::Build;
my $build = Module::Build->new(
module_name => 'Symbol::Approx::Sub',
license => 'perl',
create_makefile_pl => 'traditional',
requires => {
perl => '5.014',
Devel::Symdump => 0,
Carp => 0,
Module::Load => 0,
Exception::Class => 0,
},
recommends => {
String::Approx => 0,
Text::Metaphone => 0,
Text::Soundex => 0,
},
configure_requires => {
Module::Build => 0,
},
build_requires => {
Test::More => 0,
Test::Exception => 0,
String::Approx => 0,
Text::Metaphone => 0,
Text::Soundex => 0,
},
build_recommends => {
Test::Pod => 0,
Test::Pod::Coverage => 0,
},
meta_merge => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/davorg-cpan/symbol-approx-sub.git',
web => 'https://github.com/davorg-cpan/symbol-approx-sub',
},
bugtracker => {
web => 'https://github.com/davorg-cpan/symbol-approx-sub/issues',
},
},
},
);
$build->create_build_script;