2007-08-02 19:25:59 +02:00
|
|
|
use 5.000;
|
|
|
|
use ExtUtils::MakeMaker;
|
|
|
|
|
|
|
|
WriteMakefile(
|
|
|
|
NAME => 'PandoraFMS',
|
2009-01-12 17:20:33 +01:00
|
|
|
VERSION_FROM => 'lib/PandoraFMS/Config.pm',
|
2009-12-18 19:22:33 +01:00
|
|
|
AUTHOR => 'Artica ST <info@artica.es>',
|
2007-08-02 19:25:59 +02:00
|
|
|
PREREQ_PM => {
|
2007-08-02 20:30:10 +02:00
|
|
|
NetAddr::IP => 0,
|
2007-08-02 19:25:59 +02:00
|
|
|
DBI => 0,
|
2009-08-11 18:26:09 +02:00
|
|
|
threads::shared => 0,
|
|
|
|
IO::Socket => 0,
|
|
|
|
Time::Local => 0,
|
2007-08-02 19:25:59 +02:00
|
|
|
XML::Simple => 0,
|
|
|
|
Time::HiRes => 0,
|
|
|
|
IO::Socket => 0,
|
2008-08-05 12:55:41 +02:00
|
|
|
HTML::Entities => 0,
|
2007-08-02 19:25:59 +02:00
|
|
|
},
|
2009-09-16 02:02:23 +02:00
|
|
|
EXE_FILES => [ 'bin/pandora_server', 'bin/pandora_exec'],
|
2007-08-02 19:25:59 +02:00
|
|
|
PMLIBDIRS => [ 'lib' ],
|
|
|
|
'dist' => { 'TAR' => 'tar', 'TARFLAGS' => 'cvfz', 'SUFFIX'
|
|
|
|
=> '.gz', 'COMPRESS' => 'gzip'}
|
|
|
|
);
|
|
|
|
|