forked from vrag86/perl-mailru-cloud-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
32 lines (31 loc) · 1.15 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
use 5.008001;
use strict;
use warnings;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'Mailru::Cloud',
LICENSE => 'perl_5',
AUTHOR => 'Pavel Andryushin',
VERSION_FROM => 'lib/Mailru/Cloud.pm', # finds $VERSION, requires EU::MM from perl >= 5.5
PREREQ_PM => {
'URI::Escape' => 3.31,
'LWP::UserAgent' => 6.27,
'LWP::Protocol::https' => 6.06,
'JSON::XS' => 3.04,
'File::Basename' => 2.85,
'Encode' => 2.60,
'IO::Socket::SSL' => 2.002,
},
META_MERGE => {
requires => { perl => '5.008008' },
resources => {
license => 'http://dev.perl.org/licenses/',
repository => 'https://github.com/vrag86/perl-mailru-cloud-api',
bugtracker => 'https://github.com/vrag86/perl-mailru-cloud-api/issues'
},
},
AUTHOR => 'vrag <[email protected]>',
LICENSE => 'perl',
);