forked from arcanez/geo-coder-google
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
29 lines (29 loc) · 918 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
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,
Encode => 0,
URI => 0,
'HTTP::Request' => 0,
},
'BUILD_REQUIRES' => {
'Test::More' => 0.32,
'Test::Number::Delta' => 0,
'Digest::HMAC_SHA1' => 0,
'MIME::Base64' => 0,
},
META_MERGE => {
resources => {
license => 'http://dev.perl.org/licenses/',
bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Geo-Coder-Google',
repository => 'https://github.com/miyagawa/geo-coder-google',
},
},
);