a4151e12dc
Closes Homebrew/homebrew#37136. Signed-off-by: Xu Cheng <xucheng@me.com>
21 lines
631 B
Ruby
21 lines
631 B
Ruby
class Activemq < Formula
|
|
homepage "http://activemq.apache.org/"
|
|
url "http://www.apache.org/dyn/closer.cgi?path=/activemq/5.11.1/apache-activemq-5.11.1-bin.tar.gz"
|
|
sha1 "db4310f037af4a430abfdddf18c2df4082a34340"
|
|
|
|
depends_on :java => "1.6+"
|
|
|
|
def install
|
|
rm_rf Dir["bin/linux-x86-*"]
|
|
|
|
prefix.install_metafiles
|
|
libexec.install Dir["*"]
|
|
|
|
(bin/"activemq").write_env_script libexec/"bin/activemq", :JAVA_HOME => ENV["JAVA_HOME"]
|
|
(bin/"activemq-admin").write_env_script libexec/"bin/activemq-admin", :JAVA_HOME => ENV["JAVA_HOME"]
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/activemq-admin", "browse", "-h"
|
|
end
|
|
end
|