initial commit
This commit is contained in:
41
api/perl/Makefile.PL
Normal file
41
api/perl/Makefile.PL
Normal file
@@ -0,0 +1,41 @@
|
||||
# IMPORTANT: if you delete this file your app will not work as
|
||||
# expected. you have been warned
|
||||
use inc::Module::Install;
|
||||
|
||||
name 'Monitoring-Livestatus';
|
||||
all_from 'lib/Monitoring/Livestatus.pm';
|
||||
perl_version '5.006';
|
||||
license 'perl';
|
||||
|
||||
resources(
|
||||
'homepage', => 'http://search.cpan.org/dist/Monitoring-Livestatus/',
|
||||
'bugtracker' => 'http://github.com/sni/Monitoring-Livestatus/issues',
|
||||
'repository', => 'http://github.com/sni/Monitoring-Livestatus',
|
||||
);
|
||||
|
||||
|
||||
requires 'IO::Socket::UNIX';
|
||||
requires 'IO::Socket::INET';
|
||||
requires 'Digest::MD5';
|
||||
requires 'Scalar::Util';
|
||||
requires 'Test::More' => '0.87';
|
||||
requires 'Thread::Queue' => '2.11';
|
||||
requires 'utf8';
|
||||
requires 'Encode';
|
||||
requires 'JSON::XS';
|
||||
|
||||
# test requirements
|
||||
# these requirements still make it into the META.yml, so they are commented so far
|
||||
#feature ('authortests',
|
||||
# -default => 0,
|
||||
# 'File::Copy::Recursive' => 0,
|
||||
# 'Test::Pod' => 1.14,
|
||||
# 'Test::Perl::Critic' => 0,
|
||||
# 'Test::Pod::Coverage' => 0,
|
||||
# 'Perl::Critic::Policy::Dynamic::NoIndirect' => 0,
|
||||
# 'Perl::Critic::Policy::NamingConventions::ProhibitMixedCaseSubs' => 0,
|
||||
# 'Perl::Critic::Policy::ValuesAndExpressions::ProhibitAccessOfPrivateData' => 0,
|
||||
#);
|
||||
|
||||
auto_install;
|
||||
WriteAll;
|
||||
Reference in New Issue
Block a user