diff options
| author | Brett Koonce | 2014-05-20 23:45:43 -0700 | 
|---|---|---|
| committer | Brett Koonce | 2014-05-21 12:00:46 -0700 | 
| commit | 62c2762b687033566dc180cbef8916bf193cb141 (patch) | |
| tree | 9b3111945ffbd4478558aff8da272e85d7d5227d /Library/Formula/solr.rb | |
| parent | a79dda4119fa0a31367e55c0565b70a1d3c3f94d (diff) | |
| download | homebrew-62c2762b687033566dc180cbef8916bf193cb141.tar.bz2 | |
solr 4.8.1
Diffstat (limited to 'Library/Formula/solr.rb')
| -rw-r--r-- | Library/Formula/solr.rb | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/Library/Formula/solr.rb b/Library/Formula/solr.rb index 079972389..accf58337 100644 --- a/Library/Formula/solr.rb +++ b/Library/Formula/solr.rb @@ -1,9 +1,9 @@ -require 'formula' +require "formula"  class Solr < Formula -  homepage 'http://lucene.apache.org/solr/' -  url 'http://www.apache.org/dyn/closer.cgi?path=lucene/solr/4.7.2/solr-4.7.2.tgz' -  sha1 '5576cf3931beb05baecaad82a5783afb6dc8d490' +  homepage "http://lucene.apache.org/solr/" +  url "http://www.apache.org/dyn/closer.cgi?path=lucene/solr/4.8.1/solr-4.8.1.tgz" +  sha1 "186885be34f8e0ad7dd6e7d6c572d5e80e2d236d"    def script; <<-EOS.undent      #!/bin/sh @@ -16,8 +16,8 @@ class Solr < Formula    end    def install -    libexec.install Dir['*'] -    (bin+'solr').write script +    libexec.install Dir["*"] +    (bin+"solr").write script    end    def caveats; <<-EOS.undent | 
