From 1e9b22e9cac970c1b876ce6fa3d29d47c01bb50e Mon Sep 17 00:00:00 2001 From: Francisco Facioni Date: Tue, 30 Jul 2013 12:50:05 -0300 Subject: [PATCH] activemq-cpp 3.7.1 Closes Homebrew/homebrew#21543. Signed-off-by: Adam Vandenberg --- Formula/activemq-cpp.rb | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Formula/activemq-cpp.rb diff --git a/Formula/activemq-cpp.rb b/Formula/activemq-cpp.rb new file mode 100644 index 00000000000..eda1756b779 --- /dev/null +++ b/Formula/activemq-cpp.rb @@ -0,0 +1,20 @@ +require 'formula' + +class ActivemqCpp < Formula + url 'http://apache.dattatec.com/activemq/activemq-cpp/source/activemq-cpp-library-3.7.1-src.tar.bz2' + homepage 'http://activemq.apache.org/cms/index.html' + sha1 'e70167a0dc4f6c645c1e16a9c4e3fd95d208adf5' + + depends_on 'autogen' => :build + depends_on 'autoconf' => :build + depends_on 'automake' => :build + depends_on 'libtool' => :build + + + def install + system "bash autogen.sh" + system "./configure", "--prefix=#{prefix}" + system "make" + system "make install" + end +end