add README.md symlink
[Nagios-Plugin.git] / Makefile.PL
blob67b7733d121a9baa82c8c6104c5e71ca4155b38b
1 use 5.006;
2 use ExtUtils::MakeMaker;
3 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
4 # the contents of the Makefile that is written.
5 WriteMakefile(
6     NAME              => 'Nagios::Monitoring::Plugin',
7     VERSION_FROM      => 'lib/Nagios/Monitoring/Plugin/Functions.pm', # finds $VERSION
8     PREREQ_PM         => {
9         'LICENSE'  => 'perl',
10         Params::Validate    => 0,
11         Class::Accessor     => 0,
12         Test::More              => 0.62,
13         Carp                => 0,
14         Config::Tiny        => 0,
15         File::Spec          => 0,
16         File::Basename      => 0,
17         IO::File            => 0,
18         Math::Calc::Units   => 0,           # used in N::P::Performance
19     }, # e.g., Module::Name => 1.1
20     ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
21       (ABSTRACT_FROM  => 'lib/Nagios/Monitoring/Plugin.pm', # retrieve abstract from module
22        AUTHOR         => 'Nagios Plugin Development Team <nagiosplug-devel@lists.sourceforge.net>') : ()),
23     ($ExtUtils::MakeMaker::VERSION >= 6.3002 ? ('LICENSE'  => 'perl_5', ) : ()),