homebrew-core/Formula/solr.rb
Thierry Moisan 154f86cb70 solr 8.4.1
Closes #49162.

Signed-off-by: Alexander Bayandin <a.bayandin@gmail.com>
2020-01-18 22:39:33 +00:00

63 lines
1.9 KiB
Ruby

class Solr < 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/8.4.1/solr-8.4.1.tgz"
sha256 "ec39e1e024b2e37405149de41e39e875a39bf11a53f506d07d96b47b8d2a4301"
bottle :unneeded
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"
(var/"lib/solr").install "server/solr/README.txt", "server/solr/solr.xml", "server/solr/zoo.cfg"
prefix.install %w[contrib dist 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 => "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>
<string>-s</string>
<string>/usr/local/var/lib/solr</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