forked from miyagawa/geo-coder-google
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathMakefile.PL
35 lines (35 loc) · 1.11 KB
/
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
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'Geo::Coder::Google',
'AUTHOR' => 'Tatsuhiko Miyagawa <[email protected]>',
'LICENSE' => 'perl',
'VERSION_FROM' => 'lib/Geo/Coder/Google.pm', # finds $VERSION
'ABSTRACT_FROM' => 'lib/Geo/Coder/Google.pm',
'MIN_PERL_VERSION' => '5.008001',
'PREREQ_PM' => {
LWP => 5.5,
JSON => 2.27,
URI => 0,
'HTTP::Request' => 0,
},
'TEST_REQUIRES' => {
'Test::More' => 0.32,
'Test::Number::Delta' => 0,
'Digest::HMAC_SHA1' => 0,
'MIME::Base64' => 0,
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
bugtracker => {
web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Geo-Coder-Google',
mailto => '[email protected]',
},
repository => {
type => 'git',
url => 'https://github.com/arcanez/geo-coder-google.git',
web => 'https://github.com/arcanez/geo-coder-google',
},
},
},
);