solr@5.4: remove formula
Doesn't appear on the analytics list & is very, very unsupported by upstream at this point.
This commit is contained in:
parent
6d0e75de55
commit
8bfc41d064
1 changed files with 0 additions and 65 deletions
|
@ -1,65 +0,0 @@
|
|||
class SolrAT54 < 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.4.1/solr-5.4.1.tgz"
|
||||
mirror "https://archive.apache.org/dist/lucene/solr/5.4.1/solr-5.4.1.tgz"
|
||||
sha256 "3e4b4ec7bd728b49b2ebc3dbe8f3d1ef89fded4ab86b9e2f856bedd58c99f28b"
|
||||
|
||||
bottle :unneeded
|
||||
|
||||
depends_on :java
|
||||
|
||||
skip_clean "example/logs"
|
||||
|
||||
def install
|
||||
libexec.install Dir["*"]
|
||||
bin.install "#{libexec}/bin/solr"
|
||||
bin.install "#{libexec}/bin/post"
|
||||
bin.install "#{libexec}/bin/oom_solr.sh"
|
||||
share.install "#{libexec}/bin/solr.in.sh"
|
||||
prefix.install "#{libexec}/example"
|
||||
prefix.install "#{libexec}/server"
|
||||
|
||||
# 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.undent
|
||||
<?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