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
|
2014-01-02 02:17:13 +08:00
|
|
|
# No need to specify perl modules. MakeMaker will find them automatically
|
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
|
|
|
);
|