activemq-cpp 3.8.3
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/homebrew#33834. Signed-off-by: Tim D. Smith <git@tim-smith.us>
This commit is contained in:
parent
2ebd4d4568
commit
57ddc78580
1 changed files with 11 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue