blob: ea4a0599d15069d4497b86d86415080aed4e4aaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
class ActivemqCpp < Formula
homepage "https://activemq.apache.org/cms/index.html"
url "http://www.apache.org/dyn/closer.cgi?path=activemq/activemq-cpp/3.8.4/activemq-cpp-library-3.8.4-src.tar.bz2"
sha1 "7c0c79833f1647df3905948f3b8f2592bc7a8994"
bottle do
cellar :any
revision 1
sha1 "0a9eb28a54a39e34c7acdbf2223bc3e4321b6e0e" => :yosemite
sha1 "4274dcd894a783d0b59f197feece8e5b1c844575" => :mavericks
sha1 "4a4fa0eaae9b13720bf78ee95a056ab7165fc07f" => :mountain_lion
end
depends_on "pkg-config" => :build
depends_on "openssl"
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make", "install"
end
test do
system "#{bin}/activemqcpp-config", "--version"
end
end
|