-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
35 lines (33 loc) · 820 Bytes
/
Makefile.PL
File metadata and controls
35 lines (33 loc) · 820 Bytes
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
#~ use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile (
NAME => 'RundeckAPI',
AUTHOR => q{Xavier Humbert <xavier.humbert@ac-nancy-metz.fr>},
VERSION_FROM => 'lib/RundeckAPI.pm',
ABSTRACT => 'Queries Rundeck REST API',
LICENSE => 'GPL',
PL_FILES => {},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '0',
},
PREREQ_PM => {
'File::Basename' => 2.85,
'LWP::UserAgent' => 5.833,
'HTTP::Cookies' => 5.833,
'REST::Client' => 273,
'Scalar::Util' => 1.27,
'JSON' => 2.97,
},
TEST_REQUIRES => {
'Test::More' => 1.300,
'Test::Distribution' => 2.0,
'Test::CheckManifest' => 1.4,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'RundeckAPI-*' },
);
=pod
History
Updated version to match those in RHEL6
=cut