Skip to content

Commit

Permalink
activemq-cpp 3.8.3
Browse files Browse the repository at this point in the history
Version bump, additional OpenSSL dependency, and simple test. Note,
this will fail to install on at least 10.10 from source unless you have
the CLT package installed due to our old friend apr-1. Bottling should
solve that issue for most people though.

Closes Homebrew/legacy-homebrew#33834.

Signed-off-by: Tim D. Smith <git@tim-smith.us>
  • Loading branch information
DomT4 authored and tdsmith committed Nov 3, 2014
1 parent 2ebd4d4 commit 57ddc78
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions Formula/activemq-cpp.rb
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
require "formula"

class ActivemqCpp < Formula
homepage "http://activemq.apache.org/cms/index.html"
url "http://www.apache.org/dyn/closer.cgi?path=activemq/activemq-cpp/3.8.2/activemq-cpp-library-3.8.2-src.tar.bz2"
sha1 "6fcaeb278f2d359343ccef4b5814f0092a4d7b54"
homepage "https://activemq.apache.org/cms/index.html"
url "http://www.apache.org/dyn/closer.cgi?path=activemq/activemq-cpp/3.8.3/activemq-cpp-library-3.8.3-src.tar.bz2"
sha1 "ea67d8b86a524ff57f2a2e0e2451deafacfd6d4b"

depends_on "pkg-config" => :build
depends_on "openssl"

def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
system "make", "install"
end

test do
system "#{bin}/activemqcpp-config", "--version"
end
end

0 comments on commit 57ddc78

Please sign in to comment.