homebrew-core/Formula/hbase.rb
Max Howell 77c73ecb89 Use Apache’s closer.cgi where appropriate
Some of these were pointing at archive.apache.org. Now they aren’t, I investigated for good rationale for using the archive before altering it.

mod_python still uses archive.apache.org as that is the only place it exists that I could find.

jsvc *now* uses apache.archive.org as the formula was otherwise broken and the binary tarball it needs no longer exists on the main mirrors.
2011-07-27 10:41:17 +01:00

43 lines
1,005 B
Ruby

require 'formula'
class Hbase < Formula
url 'http://www.apache.org/dyn/closer.cgi?path=hbase/hbase-0.90.3/hbase-0.90.3.tar.gz'
homepage 'http://hbase.apache.org'
md5 '834aa50df08886515939ad6af0a55885'
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