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.1/solr-5.3.1.tgz" mirror "https://archive.apache.org/dist/lucene/solr/5.3.1/solr-5.3.1.tgz" sha256 "34ddcac071226acd6974a392af7671f687990aa1f9eb4b181d533ca6dca6f42d" bottle :unneeded 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 Label #{plist_name} ProgramArguments #{opt_bin}/solr start -f ServiceDescription #{name} WorkingDirectory #{HOMEBREW_PREFIX} RunAtLoad EOS end test do system bin/"solr" end end