-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
41 lines (40 loc) · 1.45 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 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Helpdesk::Integration',
AUTHOR => q{Marco Pessotto <melmothx@gmail.com>},
VERSION_FROM => 'lib/Helpdesk/Integration.pm',
ABSTRACT_FROM => 'lib/Helpdesk/Integration.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
# recent version to prevent boilerplate error message
# unable to create SSL connection: IO::Socket::IP configuration failed
'IO::Socket::SSL' => '2.013',
'Net::IMAP::Client' => 0,
'Email::MIME' => 0,
'Error' => 0,
# contains important bugfix (#118729)
'RT::Client::REST' => 0.58,
'Net::GitHub' => 0.47,
'JSON' => 0,
'LWP::UserAgent' => 0,
'Moo' => 0,
'YAML' => 0,
'DateTime' => 0,
'Date::Parse' => 0,
'Mail::GnuPG' => 0,
'MIME::Parser' => 0,
'Google::API::Client' => 0.13,
'HTML::FormatText::WithLinks' => 0,
},
EXE_FILES => [
'bin/helpdesk-integration',
],
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Helpdesk-Integration-*' },
);