public
Description: a module allowing control of the ElkM1 Security / Home Automation system
Homepage: http://sourceforge.net/projects/elkm1control
Clone URL: git://github.com/threadhead/elkm1--control.git
elkm1--control / Makefile.PL
100644 13 lines (12 sloc) 0.573 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
use 5.008006;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME => 'ElkM1::Control',
    VERSION_FROM => 'lib/ElkM1/Control.pm', # finds $VERSION
    PREREQ_PM => { IO::Socket::INET => 1.27, IO::Socket::SSL => 0.97 },
    ($] >= 5.005 ? ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM => 'lib/ElkM1/Control.pm', # retrieve abstract from module
       AUTHOR => 'A. U. Thor <jr@localdomain>') : ()),
);