homebrew-core/Formula/hadoop.rb
nibbles 2bits ad36df9c67 hadoop 1.0.4
- Upgrade to 1.0.4
- Note qt-4.8.3 installs a binary called `rcc` which
causes a `brew link` failure if it's installed.

Fixes Homebrew/homebrew#15495

Closes Homebrew/homebrew#15499.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-16 20:23:33 -07:00

37 lines
958 B
Ruby

require 'formula'
class Hadoop < Formula
homepage 'http://hadoop.apache.org/common/'
url 'http://www.apache.org/dyn/closer.cgi?path=hadoop/core/hadoop-1.0.4/hadoop-1.0.4.tar.gz'
sha1 '1ab6f3271289ff83ba7b44a090ec1a3e6b77d1dd'
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 lib webapps contrib]
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/hadoop-env.sh",
"# export JAVA_HOME=/usr/lib/j2sdk1.5-sun",
"export JAVA_HOME=\"$(/usr/libexec/java_home)\""
end
def caveats; <<-EOS.undent
In Hadoop's config file:
#{libexec}/conf/hadoop-env.sh
$JAVA_HOME has been set to be the output of:
/usr/libexec/java_home
EOS
end
end