forked from modernistik/Nmap-Parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
29 lines (25 loc) · 824 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
use 5.004;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
my %depends = (
XML::Twig => 3.16,
Storable => 2
);
WriteMakefile(
ABSTRACT => 'Parse nmap scan data with perl',
AUTHOR => 'Anthony Persaud',
LICENSE => 'mit',
clean => { FILES => "*.tar *.old pod2htm* *.htm*" },
#EXE_FILES => [ map {"tools/$_"} @programs], #soon
NAME => 'Nmap::Parser',
PREREQ_PM => \%depends,
VERSION_FROM => 'Parser.pm', # finds $VERSION
META_MERGE => {
"meta-spec" => { version => 2 },
homepage => 'https://github.com/modernistik/Nmap-Parser',
resources => {
repository => "https://github.com/modernistik/Nmap-Parser",
},
},
);