File: Makefile.PL

package info (click to toggle)
libnmap-parser-perl 1.05-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, jessie, jessie-kfreebsd, lenny, squeeze, wheezy
  • size: 176 kB
  • ctags: 106
  • sloc: perl: 988; xml: 124; makefile: 34
file content (21 lines) | stat: -rwxr-xr-x 593 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 G Persaud (apersaud@gmail.com)',
    clean		=> {FILES => "*.tar *.old pod2htm* *.htm*"},
    #EXE_FILES   	=> [ map {"tools/$_"} @programs], #soon
    NAME		=> 'Nmap::Parser',
    PREREQ_PM		=> \%depends,
    VERSION_FROM	=> 'Parser.pm' # finds $VERSION
	);