-
Notifications
You must be signed in to change notification settings - Fork 3
/
Build.PL
37 lines (36 loc) · 876 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
32
33
34
35
36
37
use Module::Build;
Module::Build -> new
(
module_name => 'Lingua::EN::AddressParse',
license => 'perl',
dist_abstract => "extract components of a street address from free format text",
dist_author => 'Kim Ryan <kimryan at cpan org>',
build_requires =>
{
Test::More => 0.94,
Test::Pod => 1.04,
},
configure_requires =>
{
Module::Build => 0.3800,
},
requires =>
{
locale => 1.00,
strict => 1.04,
Carp => 1.08,
Test::Pod::Coverage => 1.04,
utf8 => 1.09,
warnings => 1.12,
Parse::RecDescent => 1.00,
Locale::SubCountry => 1.41,
Lingua::EN::NameParse => 1.24
},
meta_merge =>
{
resources =>
{
repository => 'https://github.com/kimryan/Lingua-EN-AddressParse'
}
}
) -> create_build_script();