homebrew-core/Formula/hbase.rb
Florin Broasca 578132dd78 hbase 1.0.1
Closes Homebrew/homebrew#39242.

Signed-off-by: Tim D. Smith <git@tim-smith.us>
2015-05-01 08:54:34 -07:00

28 lines
799 B
Ruby

class Hbase < Formula
homepage "https://hbase.apache.org"
url "https://www.apache.org/dyn/closer.cgi?path=hbase/hbase-1.0.1/hbase-1.0.1-bin.tar.gz"
sha256 "bd9586e94b22ad12ae16fa229a017d7370913b4ce2fead717832630127e3a08e"
depends_on :java => "1.6+"
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
You must edit the configs in:
#{libexec}/conf
to reflect your environment.
For more details:
http://wiki.apache.org/hadoop/Hbase
EOS
end
end