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.1.1/solr-8.1.1.tgz" sha256 "b515598c11f53fe28d682e3d71238642e9f34509194e3c4746e39bb7d7bb46a1" 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" prefix.install %w[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 Label #{plist_name} ProgramArguments #{opt_bin}/solr start -f ServiceDescription #{name} WorkingDirectory #{HOMEBREW_PREFIX} RunAtLoad EOS end test do system bin/"solr" end end