-
Notifications
You must be signed in to change notification settings - Fork 27
/
Makefile.PL
41 lines (39 loc) · 1.36 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
33
34
35
36
37
38
39
40
41
use strict;
use warnings;
use ExtUtils::MakeMaker;
die "OS unsupported\n" if $^O eq 'MSWin32'; # Requires getpwuid to be implemented.
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' => 'bsd' )
: () ),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Test::Exception' => 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,
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'git://github.com/CpanelInc/cPanel-PublicAPI.git',
web => 'https://github.com/CpanelInc/cPanel-PublicAPI',
},
bugtracker => {
web => 'https://github.com/CpanelInc/cPanel-PublicAPI/issues',
},
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'cPanel-PublicAPI-*' },
);