homebrew-core/Formula/zabbix.rb

68 lines
2.0 KiB
Ruby

class Zabbix < Formula
desc "Availability and monitoring solution"
homepage "https://www.zabbix.com/"
url "https://downloads.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stable/3.0.1/zabbix-3.0.1.tar.gz"
sha256 "e91a8497bf635b96340988e2d9ca1bb3fac06e657b6596fa903c417a6c6b110b"
bottle do
sha256 "280644147140b9bab7a62980f504ead6c92dff07be53307241dd9714b4450ab4" => :el_capitan
sha256 "bc73d952251046996572adb17f8a7e86a0fe6ef2889dfbd0416159479bf28127" => :yosemite
sha256 "6456b27c7e81a5714baa818ba7c280bfc3972f6065ab1fa3b079bb9aa8dd83c2" => :mavericks
end
option "with-mysql", "Use Zabbix Server with MySQL library instead PostgreSQL."
option "without-server-proxy", "Install only the Zabbix Agent without Server and Proxy."
deprecated_option "agent-only" => "without-server-proxy"
if build.with? "server-proxy"
depends_on :mysql => :optional
depends_on :postgresql if build.without? "mysql"
depends_on "fping"
depends_on "libssh2"
end
def brewed_or_shipped(db_config)
brewed_db_config = "#{HOMEBREW_PREFIX}/bin/#{db_config}"
(File.exist?(brewed_db_config) && brewed_db_config) || which(db_config)
end
def install
args = %W[
--disable-dependency-tracking
--prefix=#{prefix}
--enable-agent
--with-iconv=#{MacOS.sdk_path}/usr
]
if build.with? "server-proxy"
args += %W[
--enable-server
--enable-proxy
--enable-ipv6
--with-net-snmp
--with-libcurl
--with-ssh2
]
if build.with? "mysql"
args << "--with-mysql=#{brewed_or_shipped("mysql_config")}"
else
args << "--with-postgresql=#{brewed_or_shipped("pg_config")}"
end
end
system "./configure", *args
system "make", "install"
if build.with? "server-proxy"
db = build.with?("mysql") ? "mysql" : "postgresql"
pkgshare.install "frontends/php", "database/#{db}"
end
end
test do
system "#{sbin}/zabbix_agentd", "--print"
end
end