class Activemq < Formula desc "Apache ActiveMQ: powerful open source messaging server" homepage "https://activemq.apache.org/" url "https://www.apache.org/dyn/closer.cgi?path=/activemq/5.15.0/apache-activemq-5.15.0-bin.tar.gz" sha256 "b06034c4e913bdfb9333348419f47ebac44d3a84e904bf42060a5d04915b907a" bottle :unneeded depends_on :java => "1.7+" def install rm_rf Dir["bin/linux-x86-*"] libexec.install Dir["*"] (bin/"activemq").write_env_script libexec/"bin/activemq", Language::Java.java_home_env("1.6+") end plist_options :manual => "activemq start" def plist; <<-EOS.undent Label #{plist_name} RunAtLoad AbandonProcessGroup WorkingDirectory #{opt_libexec} ProgramArguments #{opt_bin}/activemq start EOS end test do system "#{bin}/activemq", "browse", "-h" end end