Add new package: zabbix (#18840)
This commit is contained in:
parent
63340a1fac
commit
a0228d6f94
1 changed files with 42 additions and 0 deletions
42
var/spack/repos/builtin/packages/zabbix/package.py
Normal file
42
var/spack/repos/builtin/packages/zabbix/package.py
Normal file
|
@ -0,0 +1,42 @@
|
|||
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
||||
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
||||
#
|
||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||
|
||||
from spack import *
|
||||
|
||||
|
||||
class Zabbix(AutotoolsPackage):
|
||||
"""Real-time monitoring of IT components and services,
|
||||
such as networks, servers, VMs, applications and the cloud."""
|
||||
|
||||
homepage = "http://www.zabbix.com"
|
||||
url = "https://github.com/zabbix/zabbix/archive/5.0.3.tar.gz"
|
||||
|
||||
version('5.0.3', sha256='d579c5fa4e9065e8041396ace24d7132521ef5054ce30dfd9d151cbb7f0694ec')
|
||||
version('4.0.24', sha256='c7e4962d745277d67797d90e124555ce27d198822a7e65c55d86aee45d3e93fc')
|
||||
version('4.0.23', sha256='652143614f52411cad47db64e93bf3ba1cd547d6ca9591296223b5f0528b3b61')
|
||||
|
||||
depends_on('autoconf', type='build')
|
||||
depends_on('automake', type='build')
|
||||
depends_on('libtool', type='build')
|
||||
depends_on('m4', type='build')
|
||||
depends_on('mysql')
|
||||
depends_on('libevent')
|
||||
depends_on('pcre')
|
||||
depends_on('go')
|
||||
|
||||
def configure_args(self):
|
||||
args = ['--enable-server',
|
||||
'--enable-proxy',
|
||||
'--enable-agent',
|
||||
'--enable-agent2',
|
||||
'--with-mysql',
|
||||
'--with-libevent=%s' % self.spec['libevent'].prefix,
|
||||
'--with-libpcre=%s' % self.spec['pcre'].prefix
|
||||
]
|
||||
|
||||
return args
|
||||
|
||||
def setup_run_environment(self, env):
|
||||
env.prepend_path('PATH', self.prefix.sbin)
|
Loading…
Reference in a new issue