solr@7.7 7.7.1 (new formula)
Closes #37969. Signed-off-by: FX Coudert <fxcoudert@gmail.com>
This commit is contained in:
parent
5cb6ed1fd8
commit
f3feed65e9
1 changed files with 62 additions and 0 deletions
62
Formula/solr@7.7.rb
Normal file
62
Formula/solr@7.7.rb
Normal file
|
@ -0,0 +1,62 @@
|
|||
class SolrAT77 < 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/7.7.1/solr-7.7.1.tgz"
|
||||
sha256 "4fb85f12af045b28f6cb935b2f3739d59ec61ad1288ffe44c7ede64e614f28c4"
|
||||
|
||||
bottle :unneeded
|
||||
|
||||
keg_only :versioned_formula
|
||||
|
||||
depends_on :java
|
||||
|
||||
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/solr@7.7/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
|
Loading…
Reference in a new issue