maxwell 1.13.1 (new formula) (#24422)

master
Shashwat Anand 2018-03-02 18:27:38 +05:30 committed by FX Coudert
parent ac761dd63b
commit e3a773aeec
1 changed files with 28 additions and 0 deletions

28
Formula/maxwell.rb Normal file
View File

@ -0,0 +1,28 @@
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.13.1/maxwell-1.13.1.tar.gz"
sha256 "3ab7489d47f2ec04677122c8786cf573572b9bbb511b184802d2dcfe82e83781"
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