dba62fd97d
Both of these were picked up by the checks added in 641d22f. While lowercase is the convention used across Homebrew, I wonder if the audit check should be more forgiving; after all, uppercase letters are valid. And the checksum validation code does an uppercase comparison. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
43 lines
1,013 B
Ruby
43 lines
1,013 B
Ruby
require 'formula'
|
|
|
|
class Hbase < Formula
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=hbase/hbase-0.90.5/hbase-0.90.5.tar.gz'
|
|
homepage 'http://hbase.apache.org'
|
|
md5 'd720e7d5a355cb55145809cf0cfef595'
|
|
|
|
depends_on 'hadoop'
|
|
|
|
def shim_script target
|
|
<<-EOS.undent
|
|
#!/bin/bash
|
|
exec "#{libexec}/bin/#{target}" "$@"
|
|
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
|
|
|
|
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
|