blob: ce4192aa6116b53160ce75c0f0e4935d1b6cd3b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
require "formula"
class Solr < Formula
homepage "http://lucene.apache.org/solr/"
url "http://www.apache.org/dyn/closer.cgi?path=lucene/solr/4.10.1/solr-4.10.1.tgz"
sha1 "6033a9887bbfdd1d8ce1bdafce0d65975cf910d8"
bottle do
cellar :any
revision 1
sha1 "46526c38f55b53fe84b7693db1a4527c06377c41" => :mavericks
sha1 "55d249ab831038a38b17908aba0d5193b4c2b7cb" => :mountain_lion
sha1 "174a83e20f7462f6de0ba7382402f544d01268b6" => :lion
end
def install
libexec.install Dir["*"]
bin.install "#{libexec}/bin/solr"
share.install "#{libexec}/bin/solr.in.sh"
prefix.install "#{libexec}/example"
end
def caveats; <<-EOS.undent
To start solr:
solr /absolute/path/to/solr/config/dir
See the solr homepage for more setup information:
brew home solr
EOS
end
end
|