29d61d8d46
Closes Homebrew/homebrew#43251. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
44 lines
1.2 KiB
Ruby
44 lines
1.2 KiB
Ruby
class Mahout < Formula
|
|
desc "Library to help build scalable machine learning libraries"
|
|
homepage "https://mahout.apache.org/"
|
|
url "https://www.apache.org/dyn/closer.cgi?path=mahout/0.11.0/apache-mahout-distribution-0.11.0.zip"
|
|
sha256 "3b4a68c69cff2ce41b9ddd789469eaa85ea3d7bab980717182bf94ea71c22904"
|
|
|
|
head do
|
|
url "https://github.com/apache/mahout.git"
|
|
depends_on "maven" => :build
|
|
end
|
|
|
|
depends_on "hadoop"
|
|
depends_on :java
|
|
|
|
def install
|
|
if build.head?
|
|
chmod 755, "./bin"
|
|
system "mvn", "-DskipTests", "clean", "install"
|
|
end
|
|
|
|
libexec.install "bin"
|
|
|
|
if build.head?
|
|
libexec.install Dir["buildtools/target/*.jar"]
|
|
libexec.install Dir["core/target/*.jar"]
|
|
libexec.install Dir["examples/target/*.jar"]
|
|
libexec.install Dir["math/target/*.jar"]
|
|
else
|
|
libexec.install Dir["*.jar"]
|
|
end
|
|
|
|
bin.install Dir["#{libexec}/bin/*"]
|
|
bin.env_script_all_files(libexec/"bin", Language::Java.java_home_env)
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.csv").write <<-EOS.undent
|
|
"x","y"
|
|
0.1234567,0.101201201
|
|
EOS
|
|
|
|
assert_match /0.101201201/, pipe_output("#{bin}/mahout cat #{testpath}/test.csv")
|
|
end
|
|
end
|