gray / webservice-google-reader

Perl interface to Google Reader

This URL has Read+Write access

webservice-google-reader / Makefile.PL
100644 49 lines (44 sloc) 1.372 kb
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
39
40
41
42
43
44
45
46
47
48
49
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
 
my @prereq;
unless (eval { require IO::Socket::SSL; 1 }) {
    push @prereq, 'Crypt::SSLeay' => 0;
}
 
my %conf = (
    NAME => 'WebService::Google::Reader',
    AUTHOR => 'gray <gray@cpan.org>',
    LICENSE => 'perl',
    VERSION_FROM => 'lib/WebService/Google/Reader.pm',
    ABSTRACT_FROM => 'lib/WebService/Google/Reader.pm',
    PREREQ_PM => {
        'Class::Accessor::Fast' => 0,
        'Encode' => 0,
        'HTTP::Cookies' => 0,
        'HTTP::Request::Common' => 0,
        'JSON' => 0,
        'LWP::UserAgent' => 0,
        'Test::More' => 0,
        'URI' => 0,
        'URI::Escape' => 0,
        'URI::QueryParam' => 0,
        'XML::Atom' => 0,
        @prereq
    },
    META_MERGE => {
        resources => {
            repository => 'http://github.com/gray/webservice-google-reader',
        },
        recommends => {
            'Compress::Zlib' => 0,
            'JSON::XS' => 2.0,
        },
    },
    dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'WebService-Google-Reader-*' },
);
 
unless (eval { ExtUtils::MakeMaker->VERSION(6.46) }) {
    delete $conf{META_MERGE};
}
 
WriteMakefile(%conf);