-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile.PL
31 lines (30 loc) · 848 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
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Net::Nessus::REST',
VERSION_FROM => 'lib/Net/Nessus/REST.pm',
ABSTRACT_FROM => 'lib/Net/Nessus/REST.pm',
LICENSE => 'GPL_3',
PREREQ_PM => {
'JSON' => 0,
'LWP::UserAgent' => 6.04,
},
CONFIGURE_REQUIRES => {
'version' => 0,
},
TEST_REQUIRES => {
'IO::Socket::SSL' => 0,
'List::MoreUtils' => 0,
'Test::Exception' => 0,
'Test::More' => 0,
},
META_MERGE => {
'meta-spec' => { version => 2 },
'resources' => {
repository => {
type => 'git',
url => 'git://github.com/guillomovitch/Net-Nessus-REST',
web => 'https://github.com/guillomovitch/Net-Nessus-REST'
},
}
}
);