homebrew-core/Formula/hbase.rb
Takayuki Hasegawa 36a147e2dc hbase 0.98.8
Closes Homebrew/homebrew#34395.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-11-23 10:59:47 +00:00

31 lines
813 B
Ruby

require 'formula'
class Hbase < Formula
homepage 'http://hbase.apache.org'
url 'http://www.apache.org/dyn/closer.cgi?path=hbase/hbase-0.98.8/hbase-0.98.8-hadoop2-bin.tar.gz'
sha1 'a1b5d19a52976f2f42f21dd36bd040d081f3d491'
depends_on 'hadoop'
def install
rm_f Dir["bin/*.cmd", "conf/*.cmd"]
libexec.install %w[bin conf docs lib hbase-webapps]
bin.write_exec_script Dir["#{libexec}/bin/*"]
inreplace "#{libexec}/conf/hbase-env.sh",
"# export JAVA_HOME=/usr/java/jdk1.6.0/",
"export JAVA_HOME=\"$(/usr/libexec/java_home)\""
end
def caveats; <<-EOS.undent
Requires Java 1.6.0 or greater.
You must also edit the configs in:
#{libexec}/conf
to reflect your environment.
For more details:
http://wiki.apache.org/hadoop/Hbase
EOS
end
end