blob: be4268a16837125b1cd864304d937a24b169ced8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
require 'formula'
class Predictionio < Formula
homepage 'http://prediction.io/'
url 'http://download.prediction.io/PredictionIO-0.7.0.zip'
sha1 '1daf999a3aba00906419df3c2f292d8a749eb318'
depends_on 'mongodb'
depends_on 'hadoop'
def install
rm_f Dir["bin/*.bat"]
libexec.install Dir['*']
bin.write_exec_script Dir["#{libexec}/bin/*"]
mv "#{bin}/start-all.sh", "#{bin}/predictionio-start-all.sh"
mv "#{bin}/stop-all.sh", "#{bin}/predictionio-stop-all.sh"
end
def caveats; <<-EOS.undent
Before use, you must generate the database and create a user. Run:
#{bin}/setup-vendors.sh
#{bin}/setup.sh
#{bin}/users
After that, PredictionIO is ready.
Start using:
predictionio-start-all.sh
Stop using:
predictionio-stop-all.sh
EOS
end
end
|