2009-12-18 20:07:06 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Hadoop < Formula
|
2013-02-19 12:36:23 +00:00
|
|
|
homepage 'http://hadoop.apache.org/'
|
2014-05-19 00:29:51 +00:00
|
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=hadoop/common/hadoop-2.4.0/hadoop-2.4.0.tar.gz'
|
2014-04-24 15:10:58 +00:00
|
|
|
sha1 'fc94bb5cb6c50a09fd9fd3ed5e134893ccdf1dbe'
|
2009-12-18 20:07:06 +00:00
|
|
|
|
|
|
|
def install
|
2014-01-15 15:47:34 +00:00
|
|
|
rm_f Dir["bin/*.cmd", "sbin/*.cmd", "libexec/*.cmd", "etc/hadoop/*.cmd"]
|
|
|
|
libexec.install %w[bin sbin libexec share etc]
|
2012-08-07 18:20:52 +00:00
|
|
|
bin.write_exec_script Dir["#{libexec}/bin/*"]
|
2014-01-15 15:47:34 +00:00
|
|
|
sbin.write_exec_script Dir["#{libexec}/sbin/*"]
|
2012-12-17 00:37:56 +00:00
|
|
|
# But don't make rcc visible, it conflicts with Qt
|
|
|
|
(bin/'rcc').unlink
|
2011-03-13 17:10:09 +00:00
|
|
|
|
2014-01-15 15:47:34 +00:00
|
|
|
inreplace "#{libexec}/etc/hadoop/hadoop-env.sh",
|
|
|
|
"export JAVA_HOME=${JAVA_HOME}",
|
|
|
|
"export JAVA_HOME=\"$(/usr/libexec/java_home)\""
|
|
|
|
inreplace "#{libexec}/etc/hadoop/yarn-env.sh",
|
|
|
|
"# export JAVA_HOME=/home/y/libexec/jdk1.6.0/",
|
|
|
|
"export JAVA_HOME=\"$(/usr/libexec/java_home)\""
|
|
|
|
inreplace "#{libexec}/etc/hadoop/mapred-env.sh",
|
|
|
|
"# export JAVA_HOME=/home/y/libexec/jdk1.6.0/",
|
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:
|
2014-01-15 15:47:34 +00:00
|
|
|
#{libexec}/etc/hadoop/hadoop-env.sh,
|
|
|
|
#{libexec}/etc/hadoop/mapred-env.sh and
|
|
|
|
#{libexec}/etc/hadoop/yarn-env.sh
|
2011-03-13 17:10:09 +00:00
|
|
|
$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
|