homebrew-core/Formula/hbase.rb

38 lines
999 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Hbase < Formula
homepage 'http://hbase.apache.org'
url 'http://www.apache.org/dyn/closer.cgi?path=hbase/hbase-0.94.15/hbase-0.94.15.tar.gz'
sha1 '587ce348f0f25b7109c7cbe9b8c4547052d3c297'
devel do
url 'http://www.apache.org/dyn/closer.cgi?path=hbase/hbase-0.96.1.1/hbase-0.96.1.1-hadoop1-bin.tar.gz'
sha1 'b0aba57e9b5a797ec2f9208457d4b02bbbecbb5a'
end
depends_on 'hadoop'
def install
rm_f Dir["bin/*.bat"]
libexec.install %w[bin conf docs lib hbase-webapps]
libexec.install Dir['*.jar']
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)\""
end
def caveats; <<-EOS.undent
2011-03-13 17:14:21 +00:00
Requires Java 1.6.0 or greater.
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
EOS
end
end