forked from seccubus/seccubus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
executable file
·73 lines (70 loc) · 2.83 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#/usr/bin/perl
# Copyright 2015 Frank Breedijk
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
use ExtUtils::MakeMaker;
use strict;
WriteMakefile (
NAME => "Seccubus",
VERSION_FROM => "SeccubusV2.pm",
PREREQ_PM => {
'Algorithm::Diff' => 1.15,
'Carp' => 1.04,
'CGI' => 0.01,
'CGI::Carp' => 0.01,
'Exporter' => 5.58,
'ExtUtils::MakeMaker' => 6.30,
'Getopt::Long' => 2.35,
'IPC::Open2' => 1.02,
'LWP::UserAgent' => 2.0,
'DBI' => 1.58,
'DBD::mysql' => 0.1,
'Data::Dumper' => 2.12,
'XML::Simple' => 2.17,
'HTML::Entities' => 1.35,
'LWP::Simple' => 1.41,
'MIME::Base64' => 3.07,
'JSON' => 2.0,
'File::Basename' => 0.1,
'Socket' => 0.1,
'Net::SMTP' => 0.1,
'HTML::TreeBuilder' => 0.1,
'REST::Client' => 0.1,
'Net::IP' => 1.0
},
PM => {
'SeccubusV2/IVIL.pm' => '$(INST_LIBDIR)/IVIL.pm',
'SeccubusV2.pm' => '$(INST_LIBDIR)/SeccubusV2.pm',
'SeccubusV2/SeccubusAssets.pm' => '$(INST_LIBDIR)/SeccubusAssets.pm',
'SeccubusV2/SeccubusCustomSQL.pm' => '$(INST_LIBDIR)/SeccubusCustomSQL.pm',
'SeccubusV2/SeccubusDB.pm' => '$(INST_LIBDIR)/SeccubusDB.pm',
'SeccubusV2/SeccubusEvents.pm' => '$(INST_LIBDIR)/SeccubusEvents.pm',
'SeccubusV2/SeccubusFindings.pm' => '$(INST_LIBDIR)/SeccubusFindings.pm',
'SeccubusV2/SeccubusHelpers.pm' => '$(INST_LIBDIR)/SeccubusHelpers.pm',
'SeccubusV2/SeccubusHostnames.pm' => '$(INST_LIBDIR)/SeccubusHostnames.pm',
'SeccubusV2/SeccubusIssues.pm' => '$(INST_LIBDIR)/SeccubusIssues.pm',
'SeccubusV2/SeccubusIVIL.pm' => '$(INST_LIBDIR)/SeccubusIVIL.pm',
'SeccubusV2/SeccubusNotifications.pm' => '$(INST_LIBDIR)/SeccubusNotifications.pm',
'SeccubusV2/SeccubusRights.pm' => '$(INST_LIBDIR)/SeccubusRights.pm',
'SeccubusV2/SeccubusRuns.pm' => '$(INST_LIBDIR)/SeccubusRuns.pm',
'SeccubusV2/SeccubusScanners.pm' => '$(INST_LIBDIR)/SeccubusScanners.pm',
'SeccubusV2/SeccubusScans.pm' => '$(INST_LIBDIR)/SeccubusScans.pm',
'SeccubusV2/SeccubusUsers.pm' => '$(INST_LIBDIR)/SeccubusUsers.pm',
'SeccubusV2/SeccubusWorkspaces.pm' => '$(INST_LIBDIR)/SeccubusWorkspaces.pm',
},
);
package MY;
sub install {
return "install :: all
echo \"!! Please run install.pl to finish the installation !!\"";
}