forked from CpanelInc/cPanel-PublicAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
25 lines (24 loc) · 857 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'cPanel::PublicAPI',
AUTHOR => q{cPanel, Inc. <[email protected]>},
VERSION_FROM => 'lib/cPanel/PublicAPI.pm',
ABSTRACT_FROM => 'lib/cPanel/PublicAPI.pod',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'Modified BSD')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'JSON::XS' => 2.0,
'URI::Escape' => 3,
'IO::Socket::INET' => 1.31,
'IO::Socket::SSL' => 1.988, # Versions below this do not handle close calls properly
'HTTP::Tiny' => 0.042,
'HTTP::CookieJar' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'cPanel-PublicAPI-*' },
);