homebrew-core/Formula/maxwell.rb
Shashwat Anand acc64f70db
maxwell 1.14.6
Closes #27911.

Signed-off-by: William Woodruff <william@yossarian.net>
2018-05-15 18:47:36 -04:00

28 lines
773 B
Ruby

class Maxwell < Formula
desc "Maxwell's daemon, a mysql-to-json kafka producer"
homepage "http://maxwells-daemon.io/"
url "https://github.com/zendesk/maxwell/releases/download/v1.14.6/maxwell-1.14.6.tar.gz"
sha256 "3884b0220c513ff4409bb454dd1f9cb10aef9cc356002273d015b738efb0f341"
bottle :unneeded
depends_on :java => "1.8"
def install
libexec.install Dir["*"]
%w[maxwell maxwell-bootstrap].each do |f|
bin.install libexec/"bin/#{f}"
end
bin.env_script_all_files(libexec/"bin", Language::Java.java_home_env("1.8"))
end
test do
fork do
exec "#{bin}/maxwell --log_level=OFF > #{testpath}/maxwell.log 2>/dev/null"
end
sleep 15
assert_match "Using kafka version", IO.read("#{testpath}/maxwell.log")
end
end