homebrew-core/Formula/apache-flink.rb
Gautham Goli fe986f0503 apache-flink 1.6.2
Closes #33547.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2018-10-31 10:17:11 +01:00

39 lines
1.3 KiB
Ruby

class ApacheFlink < Formula
desc "Scalable batch and stream data processing"
homepage "https://flink.apache.org/"
url "https://www.apache.org/dyn/closer.lua?path=flink/flink-1.6.2/flink-1.6.2-bin-hadoop27-scala_2.11.tgz"
version "1.6.2"
sha256 "fdd13055a29f6254562f96ecb497ecfdda25ab38701dac71324099cf62d3e96b"
head "https://github.com/apache/flink.git"
bottle :unneeded
depends_on :java => "1.8"
def install
rm_f Dir["bin/*.bat"]
libexec.install Dir["*"]
(libexec/"bin").env_script_all_files(libexec/"libexec", Language::Java.java_home_env("1.8"))
chmod 0755, Dir["#{libexec}/bin/*"]
bin.write_exec_script "#{libexec}/bin/flink"
end
test do
(testpath/"log").mkpath
(testpath/"input").write "foo bar foobar"
expected = <<~EOS
(foo,1)
(bar,1)
(foobar,1)
EOS
ENV.prepend "_JAVA_OPTIONS", "-Djava.io.tmpdir=#{testpath}"
ENV.prepend "FLINK_LOG_DIR", testpath/"log"
system libexec/"bin/start-cluster.sh"
system bin/"flink", "run", "-p", "1",
libexec/"examples/streaming/WordCount.jar", "--input", "input",
"--output", "result"
system libexec/"bin/stop-cluster.sh"
assert_predicate testpath/"result", :exist?
assert_equal expected, (testpath/"result").read
end
end