9881f9f752
Also update activemq to test against it Closes Homebrew/homebrew#37218. Signed-off-by: Xu Cheng <xucheng@me.com>
21 lines
643 B
Ruby
21 lines
643 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", Language::Java.java_home_env("1.6+")
|
|
(bin/"activemq-admin").write_env_script libexec/"bin/activemq-admin", Language::Java.java_home_env("1.6+")
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/activemq-admin", "browse", "-h"
|
|
end
|
|
end
|