457fd8d089
Closes Homebrew/homebrew#37674. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
26 lines
690 B
Ruby
26 lines
690 B
Ruby
require 'formula'
|
|
|
|
class Predictionio < Formula
|
|
homepage 'http://prediction.io/'
|
|
url 'http://download.prediction.io/PredictionIO-0.9.0.tar.gz'
|
|
sha1 'e5724b637382a06c098bbb3617b35f5bcff1b469'
|
|
|
|
depends_on 'elasticsearch'
|
|
depends_on 'hadoop'
|
|
depends_on 'hbase'
|
|
depends_on 'apache-spark'
|
|
depends_on :java => "1.7"
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
libexec.install Dir['*']
|
|
bin.write_exec_script libexec/"bin/pio"
|
|
|
|
inreplace libexec/"conf/pio-env.sh" do |s|
|
|
s.gsub! /#\s*ES_CONF_DIR=.+$/, "ES_CONF_DIR=#{Formula['elasticsearch'].opt_prefix}/config"
|
|
s.gsub! /SPARK_HOME=.+$/, "SPARK_HOME=#{Formula['apache-spark'].opt_prefix}"
|
|
end
|
|
end
|
|
|
|
end
|