homebrew-core/Formula/zabbix.rb

78 lines
2.4 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.2.4/zabbix-3.2.4.tar.gz"
mirror "https://fossies.org/linux/misc/zabbix-3.2.4.tar.gz"
sha256 "22cf19ef5a9478df2281bf518e8be38adc7dbc508bf63111e02388ca7aabeef4"
bottle do
sha256 "a409b2cb1927881a15a6d3a8582672618c820457907ca5111e32ab97c0488c3b" => :sierra
sha256 "14a3e0e7c0597416054a17dadfd2484c9a04d01cf892ba8a47b50dec215cffec" => :el_capitan
sha256 "9f10aab7bdb87f10e6bcc907f19fdc59fb0395a0bf38ae7acbe061299b6f7608" => :yosemite
end
option "with-mysql", "Use Zabbix Server with MySQL library instead PostgreSQL."
option "with-sqlite", "Use Zabbix Server with SQLite 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}
--sysconfdir=#{etc}/zabbix
--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")}"
elsif build.with? "sqlite"
args << "--with-sqlite3"
else
args << "--with-postgresql=#{brewed_or_shipped("pg_config")}"
end
end
if MacOS.version == :el_capitan && MacOS::Xcode.installed? && MacOS::Xcode.version >= "8.0"
inreplace "configure", "clock_gettime(CLOCK_REALTIME, &tp);",
"undefinedgibberish(CLOCK_REALTIME, &tp);"
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