2009-12-18 20:07:06 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Hadoop < Formula
|
|
|
|
homepage 'http://hadoop.apache.org/common/'
|
2012-05-19 17:23:09 +00:00
|
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=hadoop/core/hadoop-1.0.3/hadoop-1.0.3.tar.gz'
|
|
|
|
md5 'f42d05e5c7bb43f85119546b80296435'
|
2009-12-18 20:07:06 +00:00
|
|
|
|
2010-05-05 15:48:41 +00:00
|
|
|
def shim_script target
|
|
|
|
<<-EOS.undent
|
2010-04-07 05:58:35 +00:00
|
|
|
#!/bin/bash
|
2012-02-14 04:52:39 +00:00
|
|
|
exec "#{libexec}/bin/#{target}" "$@"
|
2010-05-05 15:48:41 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2009-12-18 20:07:06 +00:00
|
|
|
def install
|
2010-03-06 07:27:21 +00:00
|
|
|
rm_f Dir["bin/*.bat"]
|
2012-03-19 23:02:38 +00:00
|
|
|
libexec.install %w[bin conf lib webapps contrib]
|
2010-07-24 21:42:41 +00:00
|
|
|
libexec.install Dir['*.jar']
|
2010-05-05 15:48:41 +00:00
|
|
|
bin.mkpath
|
|
|
|
Dir["#{libexec}/bin/*"].each do |b|
|
|
|
|
n = Pathname.new(b).basename
|
|
|
|
(bin+n).write shim_script(n)
|
|
|
|
end
|
2011-03-13 17:10:09 +00:00
|
|
|
|
|
|
|
inreplace "#{libexec}/conf/hadoop-env.sh",
|
2012-02-27 14:18:02 +00:00
|
|
|
"# export JAVA_HOME=/usr/lib/j2sdk1.5-sun",
|
2012-01-28 19:25:36 +00:00
|
|
|
"export JAVA_HOME=\"$(/usr/libexec/java_home)\""
|
2010-05-05 15:48:41 +00:00
|
|
|
end
|
|
|
|
|
2011-03-13 17:10:09 +00:00
|
|
|
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
|
2010-05-05 15:48:41 +00:00
|
|
|
EOS
|
2009-12-18 20:07:06 +00:00
|
|
|
end
|
|
|
|
end
|