forked from guillomovitch/Net-Nessus-REST
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
25 lines (24 loc) · 685 Bytes
/
Makefile.PL
File metadata and controls
25 lines (24 loc) · 685 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
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' => 0,
},
TEST_REQUIRES => {
'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'
},
}
}
);