2005-12-16 18:05:29 +08:00
|
|
|
use 5.006;
|
|
|
|
use ExtUtils::MakeMaker;
|
|
|
|
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
|
|
|
|
# the contents of the Makefile that is written.
|
|
|
|
WriteMakefile(
|
|
|
|
NAME => 'ZoneMinder',
|
2005-12-20 21:47:26 +08:00
|
|
|
VERSION_FROM => 'lib/ZoneMinder/Base.pm', # finds $VERSION
|
2005-12-16 18:05:29 +08:00
|
|
|
PREREQ_PM => {}, # e.g., Module::Name => 1.1
|
2005-12-20 21:47:26 +08:00
|
|
|
PM => {
|
|
|
|
'lib/ZoneMinder.pm' => '$(INST_LIBDIR)/ZoneMinder.pm',
|
|
|
|
'lib/ZoneMinder/Base.pm' => '$(INST_LIBDIR)/ZoneMinder/Base.pm',
|
|
|
|
'lib/ZoneMinder/Config.pm' => '$(INST_LIBDIR)/ZoneMinder/Config.pm',
|
2007-09-05 00:08:55 +08:00
|
|
|
'lib/ZoneMinder/General.pm' => '$(INST_LIBDIR)/ZoneMinder/General.pm',
|
2005-12-20 21:47:26 +08:00
|
|
|
'lib/ZoneMinder/Database.pm' => '$(INST_LIBDIR)/ZoneMinder/Database.pm',
|
2011-06-21 17:19:10 +08:00
|
|
|
'lib/ZoneMinder/Logger.pm' => '$(INST_LIBDIR)/ZoneMinder/Logger.pm',
|
2008-07-14 23:21:16 +08:00
|
|
|
'lib/ZoneMinder/Memory.pm' => '$(INST_LIBDIR)/ZoneMinder/Memory.pm',
|
2008-07-21 22:45:48 +08:00
|
|
|
'lib/ZoneMinder/Memory/Shared.pm' => '$(INST_LIBDIR)/ZoneMinder/Memory/Shared.pm',
|
|
|
|
'lib/ZoneMinder/Memory/Mapped.pm' => '$(INST_LIBDIR)/ZoneMinder/Memory/Mapped.pm',
|
2005-12-21 00:09:21 +08:00
|
|
|
'lib/ZoneMinder/ConfigAdmin.pm' => '$(INST_LIBDIR)/ZoneMinder/ConfigAdmin.pm',
|
2011-01-22 07:53:36 +08:00
|
|
|
'lib/ZoneMinder/ConfigData.pm' => '$(INST_LIBDIR)/ZoneMinder/ConfigData.pm',
|
2007-08-30 18:43:06 +08:00
|
|
|
'lib/ZoneMinder/Control.pm' => '$(INST_LIBDIR)/ZoneMinder/Control.pm',
|
|
|
|
'lib/ZoneMinder/Control/PelcoD.pm' => '$(INST_LIBDIR)/ZoneMinder/Control/PelcoD.pm',
|
|
|
|
'lib/ZoneMinder/Control/AxisV2.pm' => '$(INST_LIBDIR)/ZoneMinder/Control/AxisV2.pm',
|
|
|
|
'lib/ZoneMinder/Control/PanasonicIP.pm' => '$(INST_LIBDIR)/ZoneMinder/Control/PanasonicIP.pm',
|
|
|
|
'lib/ZoneMinder/Control/Visca.pm' => '$(INST_LIBDIR)/ZoneMinder/Control/Visca.pm',
|
2007-08-30 20:07:42 +08:00
|
|
|
'lib/ZoneMinder/Control/Ncs370.pm' => '$(INST_LIBDIR)/ZoneMinder/Control/Ncs370.pm',
|
2009-02-09 23:02:36 +08:00
|
|
|
'lib/ZoneMinder/Control/mjpgStreamer.pm' => '$(INST_LIBDIR)/ZoneMinder/Control/mjpgStreamer.pm',
|
2013-08-15 21:08:51 +08:00
|
|
|
'lib/ZoneMinder/Control/SkyIPCam7xx.pm' => '$(INST_LIBDIR)/ZoneMinder/Control/SkyIPCam7xx.pm',
|
2013-08-23 02:20:38 +08:00
|
|
|
'lib/ZoneMinder/Control/FI8608W_Y2k.pm' => '$(INST_LIBDIR)/ZoneMinder/Control/FI8608W_Y2k.pm',
|
|
|
|
'lib/ZoneMinder/Control/FI8620_Y2k.pm' => '$(INST_LIBDIR)/ZoneMinder/Control/FI8620_Y2k.pm',
|
|
|
|
'lib/ZoneMinder/Control/FI9821W_Y2k.pm' => '$(INST_LIBDIR)/ZoneMinder/Control/FI9821W_Y2k.pm',
|
|
|
|
'lib/ZoneMinder/Control/LoftekSentinel.pm' => '$(INST_LIBDIR)/ZoneMinder/Control/LoftekSentinel.pm',
|
2005-12-27 07:11:27 +08:00
|
|
|
'lib/ZoneMinder/Trigger/Channel.pm' => '$(INST_LIBDIR)/ZoneMinder/Trigger/Channel.pm',
|
|
|
|
'lib/ZoneMinder/Trigger/Channel/Handle.pm' => '$(INST_LIBDIR)/ZoneMinder/Trigger/Channel/Handle.pm',
|
|
|
|
'lib/ZoneMinder/Trigger/Channel/Spawning.pm' => '$(INST_LIBDIR)/ZoneMinder/Trigger/Channel/Spawning.pm',
|
|
|
|
'lib/ZoneMinder/Trigger/Channel/Inet.pm' => '$(INST_LIBDIR)/ZoneMinder/Trigger/Channel/Inet.pm',
|
|
|
|
'lib/ZoneMinder/Trigger/Channel/Unix.pm' => '$(INST_LIBDIR)/ZoneMinder/Trigger/Channel/Unix.pm',
|
|
|
|
'lib/ZoneMinder/Trigger/Channel/File.pm' => '$(INST_LIBDIR)/ZoneMinder/Trigger/Channel/File.pm',
|
|
|
|
'lib/ZoneMinder/Trigger/Channel/Serial.pm' => '$(INST_LIBDIR)/ZoneMinder/Trigger/Channel/Serial.pm',
|
|
|
|
'lib/ZoneMinder/Trigger/Connection.pm' => '$(INST_LIBDIR)/ZoneMinder/Trigger/Connection.pm',
|
|
|
|
'lib/ZoneMinder/Trigger/Connection/Example.pm' => '$(INST_LIBDIR)/ZoneMinder/Trigger/Connection/Example.pm',
|
2005-12-20 21:47:26 +08:00
|
|
|
},
|
2005-12-16 18:05:29 +08:00
|
|
|
($] >= 5.005 ? ## Add these new keywords supported since 5.005
|
|
|
|
(ABSTRACT_FROM => 'lib/ZoneMinder.pm', # retrieve abstract from module
|
2005-12-20 21:47:26 +08:00
|
|
|
AUTHOR => 'Philip Coombes <philip.coombes@zoneminder.com>') : ()),
|
2005-12-16 18:05:29 +08:00
|
|
|
);
|