40 lines
945 B
Ruby
40 lines
945 B
Ruby
require 'formula'
|
|
|
|
class Mahout < Formula
|
|
homepage 'http://mahout.apache.org/'
|
|
url 'http://apache.cs.utah.edu/mahout/0.9/mahout-distribution-0.9.tar.gz'
|
|
sha1 'b0d192a33dcc3f00439bf2ffbc313c6ef47510c3'
|
|
|
|
head do
|
|
url 'http://svn.apache.org/repos/asf/mahout/trunk'
|
|
depends_on 'maven' => :build
|
|
end
|
|
|
|
depends_on 'hadoop'
|
|
|
|
def install
|
|
if build.head?
|
|
system '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.write_exec_script Dir["#{libexec}/bin/*"]
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Mahout requires JAVA_HOME to be set:
|
|
export JAVA_HOME=$(/usr/libexec/java_home)
|
|
EOS
|
|
end
|
|
end
|