1use 5.004;
2use ExtUtils::MakeMaker;
3
4# See lib/ExtUtils/MakeMaker.pm for details of how to influence
5# the contents of the Makefile that is written.
6
7my %depends = (
8    XML::Twig => 3.16,
9    Storable  => 2
10);
11
12WriteMakefile(
13    ABSTRACT => 'Parse nmap scan data with perl',
14    AUTHOR   => 'Anthony Persaud',
15    LICENSE  => 'mit',
16    clean    => { FILES => "*.tar *.old pod2htm* *.htm*" },
17
18    #EXE_FILES   	=> [ map {"tools/$_"} @programs], #soon
19    NAME         => 'Nmap::Parser',
20    PREREQ_PM    => \%depends,
21    VERSION_FROM => 'Parser.pm',      # finds $VERSION
22    META_MERGE   => {
23        "meta-spec" => { version => 2 },
24        homepage    => 'https://github.com/modernistik/Nmap-Parser',
25        resources => {
26            repository => "https://github.com/modernistik/Nmap-Parser",
27        },
28    },
29);
30