-
Notifications
You must be signed in to change notification settings - Fork 4
65 lines (55 loc) · 1.93 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
class SolrAT55 < Formula
desc "Enterprise search platform from the Apache Lucene project"
homepage "https://lucene.apache.org/solr/"
url "https://www.apache.org/dyn/closer.cgi?path=lucene/solr/5.5.5/solr-5.5.5.tgz"
mirror "https://archive.apache.org/dist/lucene/solr/5.5.5/solr-5.5.5.tgz"
sha256 "2bbe3a55976f118c5d8c2382d4591257f6e2af779c08c6561e44afa3181a87c1"
bottle :unneeded
keg_only :versioned_formula
depends_on "openjdk"
skip_clean "example/logs"
def install
bin.install %w[bin/solr bin/post bin/oom_solr.sh]
pkgshare.install "bin/solr.in.sh"
prefix.install %w[example server]
libexec.install Dir["*"]
# Fix the classpath for the post tool
inreplace "#{bin}/post", '"$SOLR_TIP/dist"', "#{libexec}/dist"
# Fix the paths in the sample solrconfig.xml files
Dir.glob([
"#{prefix}/example/**/solrconfig.xml",
"#{prefix}/**/data_driven_schema_configs/**/solrconfig.xml",
"#{prefix}/**/sample_techproducts_configs/**/solrconfig.xml",
]) do |f|
inreplace f, ":../../../..}/", "}/libexec/"
end
end
plist_options :manual => "#{HOMEBREW_PREFIX}/opt/[email protected]/bin/solr start"
def plist
<<~EOS
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>ProgramArguments</key>
<array>
<string>#{opt_bin}/solr</string>
<string>start</string>
<string>-f</string>
</array>
<key>ServiceDescription</key>
<string>#{name}</string>
<key>WorkingDirectory</key>
<string>#{HOMEBREW_PREFIX}</string>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
EOS
end
test do
system bin/"solr"
end
end