homebrew-core/Formula/solr.rb
golabico 8b3fcb45af Solr 5.3.0
Bumped Solr to 5.3.0.

Closes Homebrew/homebrew#43322.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-27 13:50:15 +01:00

49 lines
1.4 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/5.3.0/solr-5.3.0.tgz"
mirror "https://archive.apache.org/dist/lucene/solr/5.3.0/solr-5.3.0.tgz"
sha256 "26aec63d81239a65f182f17bbf009b1070f7db0bb83657ac2a67a08b57227f7c"
depends_on :java
skip_clean "example/logs"
def install
libexec.install Dir["*"]
bin.install "#{libexec}/bin/solr"
share.install "#{libexec}/bin/solr.in.sh"
prefix.install "#{libexec}/example"
prefix.install "#{libexec}/server"
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 "solr"
end
end