-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.PL
38 lines (34 loc) · 964 Bytes
/
Makefile.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
use 5.008004;
use ExtUtils::MakeMaker;
WriteMakefile
(
'NAME' => 'Locale::SubCountry',
'VERSION_FROM' => 'lib/Locale/SubCountry.pm',
'ABSTRACT' => 'Convert state, province, county etc. names to/from ISO 3166-2 codes, get all states in a country',
'AUTHOR' => 'Kim Ryan <kimryan at cpan org>',
'LICENSE' => 'perl',
'PREREQ_PM' =>
{
locale => 1.00,
strict => 1.04,
utf8 => 1.09,
warnings => 1.12,
JSON => 1.00
},
TEST_REQUIRES =>
{
Test::More => 0.94,
Test::Pod => 1.04,
},
'LICENSE' => 'perl',
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/dwimperl/Task-DWIM.git',
web => 'https://github.com/dwimperl/Task-DWIM',
},
},
}
);