public
Description: Perl interface to the Yahoo Geocoding API
Homepage: http://search.cpan.org/dist/Geo-Coder-Yahoo/
Clone URL: git://github.com/abh/geo-coder-yahoo.git
geo-coder-yahoo / Makefile.PL
100644 23 lines (20 sloc) 0.707 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use strict;
use warnings;
use ExtUtils::MakeMaker;
 
WriteMakefile(
    NAME => 'Geo::Coder::Yahoo',
    AUTHOR => 'Ask Bjoern Hansen <ask@develooper.com>',
    VERSION_FROM => 'lib/Geo/Coder/Yahoo.pm',
    ABSTRACT_FROM => 'lib/Geo/Coder/Yahoo.pm',
    PL_FILES => {},
    LICENSE => 'perl',
    PREREQ_PM => {
                  'Test::More' => 0,
                  'Yahoo::Search::XML' => '20060729.004',
                  'LWP::UserAgent' => 0,
                  'URI' => 1.36,
'Encode' => 0,
    },
    dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'Geo-Coder-Yahoo-*' },
);