2010-10-28 23:54:12 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Hbase < Formula
|
2012-01-13 16:47:15 +00:00
|
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=hbase/hbase-0.90.5/hbase-0.90.5.tar.gz'
|
2010-10-28 23:54:12 +00:00
|
|
|
homepage 'http://hbase.apache.org'
|
2012-01-13 16:47:15 +00:00
|
|
|
md5 'D720E7D5A355CB55145809CF0CFEF595'
|
2010-10-28 23:54:12 +00:00
|
|
|
|
|
|
|
depends_on 'hadoop'
|
|
|
|
|
|
|
|
def shim_script target
|
|
|
|
<<-EOS.undent
|
|
|
|
#!/bin/bash
|
2011-03-13 17:14:21 +00:00
|
|
|
exec #{libexec}/bin/#{target} $@
|
2010-10-28 23:54:12 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
|
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
libexec.install %w[bin conf docs lib hbase-webapps]
|
|
|
|
libexec.install Dir['*.jar']
|
|
|
|
bin.mkpath
|
|
|
|
Dir["#{libexec}/bin/*"].each do |b|
|
|
|
|
n = Pathname.new(b).basename
|
|
|
|
(bin+n).write shim_script(n)
|
|
|
|
end
|
2011-03-13 17:14:21 +00:00
|
|
|
|
|
|
|
inreplace "#{libexec}/conf/hbase-env.sh",
|
|
|
|
"# export JAVA_HOME=/usr/java/jdk1.6.0/",
|
|
|
|
"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
|