homebrew-core/Formula/solr.rb
Jonatan Samoocha 9fa24932cf solr: don't remove empty "example/logs" directory.
An empty "example/logs" directory was removed by brew as part of post-install
cleaning. Solr fails to start out-of-the-box without this directory, so a
skip_clean statement was added to ignore this directory.

Fixes Homebrew/homebrew#35775.
Closes Homebrew/homebrew#35999.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-01-18 17:46:08 +01:00

42 lines
1.2 KiB
Ruby

require "formula"
class Solr < Formula
homepage "http://lucene.apache.org/solr/"
url "http://www.apache.org/dyn/closer.cgi?path=lucene/solr/4.10.2/solr-4.10.2.tgz"
sha1 "b913204d07212d7bb814afe4641992f22404a27d"
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"
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
end