homebrew-core/Formula/apache-spark.rb
2017-12-28 03:06:11 -08:00

26 lines
819 B
Ruby

class ApacheSpark < Formula
desc "Engine for large-scale data processing"
homepage "https://spark.apache.org/"
url "https://www.apache.org/dyn/closer.lua?path=spark/spark-2.2.1/spark-2.2.1-bin-hadoop2.7.tgz"
version "2.2.1"
sha256 "79fb8285546670923a66082324bf56e99a7201476a52dea908804ddfa04f16c8"
head "https://github.com/apache/spark.git"
bottle :unneeded
depends_on :java => "1.8"
def install
# Rename beeline to distinguish it from hive's beeline
mv "bin/beeline", "bin/spark-beeline"
rm_f Dir["bin/*.cmd"]
libexec.install Dir["*"]
bin.install Dir[libexec/"bin/*"]
bin.env_script_all_files(libexec/"bin", Language::Java.java_home_env("1.8"))
end
test do
assert_match "Long = 1000", pipe_output(bin/"spark-shell", "sc.parallelize(1 to 1000).count()")
end
end