2007-08-02 19:25:59 +02:00
|
|
|
use 5.000;
|
|
|
|
use ExtUtils::MakeMaker;
|
|
|
|
|
|
|
|
WriteMakefile(
|
|
|
|
NAME => 'PandoraFMS',
|
|
|
|
VERSION_FROM => 'bin/PandoraFMS/Config.pm',
|
|
|
|
AUTHOR => 'Sancho Lerena <slerena@gmail.com>',
|
|
|
|
PREREQ_PM => {
|
2007-08-02 20:30:10 +02:00
|
|
|
NetAddr::IP => 0,
|
2007-08-02 19:25:59 +02:00
|
|
|
DBI => 0,
|
|
|
|
threads::shared => 0,
|
|
|
|
IO::Socket => 0,
|
|
|
|
Time::Format => 0,
|
|
|
|
Time::Local => 0,
|
|
|
|
Date::Manip => 0,
|
|
|
|
XML::Simple => 0,
|
|
|
|
Net::Ping => 0,
|
|
|
|
Time::HiRes => 0,
|
|
|
|
IO::Socket => 0,
|
2008-06-19 16:53:10 +02:00
|
|
|
Mail::Sendmail => 0,
|
|
|
|
Net::Traceroute::PurePerl => 0,
|
2007-08-02 19:25:59 +02:00
|
|
|
SNMP => 0
|
|
|
|
},
|
|
|
|
EXE_FILES =>
|
2008-04-09 16:10:01 +02:00
|
|
|
[ 'bin/pandora_server', 'bin/pandora_network', 'bin/pandora_recon', 'bin/pandora_snmpconsole' , 'bin/pandora_plugin', 'bin/pandora_export', 'bin/pandora_prediction'],
|
2007-08-02 19:25:59 +02:00
|
|
|
PMLIBDIRS => [ 'lib' ],
|
|
|
|
'dist' => { 'TAR' => 'tar', 'TARFLAGS' => 'cvfz', 'SUFFIX'
|
|
|
|
=> '.gz', 'COMPRESS' => 'gzip'}
|
|
|
|
);
|
|
|
|
|