diff options
| author | Pradeep Gowda | 2015-03-18 00:05:01 -0400 | 
|---|---|---|
| committer | Jack Nagel | 2015-03-18 21:22:55 -0400 | 
| commit | 1fe59a3c3f59f5567e342f6987607dfe22095ec1 (patch) | |
| tree | 395fd445eb8e34f0bb03efd10766aefb31f515a0 | |
| parent | f25b23cc1d509e6425dcf07cd2e246f4d9264ec1 (diff) | |
| download | homebrew-1fe59a3c3f59f5567e342f6987607dfe22095ec1.tar.bz2 | |
hbase 1.0.0
Closes #37824.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Formula/hbase.rb | 18 | 
1 files changed, 4 insertions, 14 deletions
| diff --git a/Library/Formula/hbase.rb b/Library/Formula/hbase.rb index 7bd053957..6e533f589 100644 --- a/Library/Formula/hbase.rb +++ b/Library/Formula/hbase.rb @@ -1,8 +1,9 @@  class Hbase < Formula -  homepage "http://hbase.apache.org" -  url "http://www.apache.org/dyn/closer.cgi?path=hbase/hbase-0.98.10.1/hbase-0.98.10.1-hadoop2-bin.tar.gz" -  sha1 "ffe3b17a0c44417f2f8dabf9f263699f471d403f" +  homepage "https://hbase.apache.org" +  url "https://www.apache.org/dyn/closer.cgi?path=hbase/hbase-1.0.0/hbase-1.0.0-bin.tar.gz" +  sha1 "d6886d6c7975ecf312eab745c3642c61f1e753db" +  depends_on :java => "1.6+"    depends_on "hadoop"    def install @@ -15,15 +16,4 @@ class Hbase < Formula        "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 | 
