-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile.PL
31 lines (28 loc) · 938 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
26
27
28
29
30
31
# Note: this file was auto-generated by Module::Build::Compat version 0.4205
require 5.008001;
use ExtUtils::MakeMaker;
use Config;
# check if threads are available
BEGIN {
die("OS unsupported: ERROR: This Perl not built to support threads\n")
if (! $Config{'useithreads'});
}
WriteMakefile
(
'NAME' => 'Eixo::Docker',
'VERSION_FROM' => 'lib/Eixo/Docker.pm',
'PREREQ_PM' => {
'Eixo::Base' => '1.200',
'Eixo::Rest' => '1.020',
'JSON' => '2.5',
'Net::HTTP' => '6.06'
},
'INSTALLDIRS' => 'site',
'EXE_FILES' => [],
'PL_FILES' => {},
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(
ABSTRACT_FROM => 'lib/Eixo/Docker.pod', # retrieve abstract from module
AUTHOR => ['Francisco Maseda <[email protected]>', 'Javier Gomez <[email protected]>']
) : ()),
);