2010-10-28 23:54:12 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Hbase < Formula
|
2010-10-28 23:54:12 +00:00
|
|
|
homepage 'http://hbase.apache.org'
|
2014-12-24 14:26:16 +00:00
|
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=hbase/hbase-0.98.9/hbase-0.98.9-hadoop2-bin.tar.gz'
|
|
|
|
sha1 '88d83d4f287b0ee89a04052b2a81fe46b1ac10a1'
|
2010-10-28 23:54:12 +00:00
|
|
|
|
|
|
|
depends_on 'hadoop'
|
|
|
|
|
|
|
|
def install
|
2014-03-20 23:06:08 +00:00
|
|
|
rm_f Dir["bin/*.cmd", "conf/*.cmd"]
|
2010-10-28 23:54:12 +00:00
|
|
|
libexec.install %w[bin conf docs lib hbase-webapps]
|
2012-08-07 18:20:52 +00:00
|
|
|
bin.write_exec_script Dir["#{libexec}/bin/*"]
|
2011-03-13 17:14:21 +00:00
|
|
|
|
|
|
|
inreplace "#{libexec}/conf/hbase-env.sh",
|
|
|
|
"# export JAVA_HOME=/usr/java/jdk1.6.0/",
|
2012-01-28 19:25:36 +00:00
|
|
|
"export JAVA_HOME=\"$(/usr/libexec/java_home)\""
|
2010-10-28 23:54:12 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
2011-03-13 17:14:21 +00:00
|
|
|
Requires Java 1.6.0 or greater.
|
2010-10-28 23:54:12 +00:00
|
|
|
|
|
|
|
You must also edit the configs in:
|
|
|
|
#{libexec}/conf
|
|
|
|
to reflect your environment.
|
|
|
|
|
|
|
|
For more details:
|
2011-03-13 17:14:21 +00:00
|
|
|
http://wiki.apache.org/hadoop/Hbase
|
2010-10-28 23:54:12 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|