blob: a393febf5f2517c73fd590ded3629faa5075fee0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require "formula"
class Activemq < Formula
homepage "http://activemq.apache.org/"
url "http://www.apache.org/dyn/closer.cgi?path=/activemq/5.10.1/apache-activemq-5.10.1-bin.tar.gz"
sha1 "5e62deb1ccd103ec1765f836756a7889f6131ab0"
def install
rm_rf Dir["bin/linux-x86-*"]
prefix.install_metafiles
libexec.install Dir["*"]
bin.write_exec_script libexec/"bin/activemq"
bin.write_exec_script libexec/"bin/activemq-admin"
end
end
|