2013-07-30 15:50:05 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class ActivemqCpp < Formula
|
|
|
|
homepage 'http://activemq.apache.org/cms/index.html'
|
2013-12-15 18:02:42 +00:00
|
|
|
url 'http://apache.dattatec.com/activemq/activemq-cpp/source/activemq-cpp-library-3.8.2-src.tar.bz2'
|
|
|
|
sha1 '6fcaeb278f2d359343ccef4b5814f0092a4d7b54'
|
2013-07-30 15:50:05 +00:00
|
|
|
|
|
|
|
depends_on 'autogen' => :build
|
2013-10-26 17:51:17 +00:00
|
|
|
depends_on :autoconf
|
|
|
|
depends_on :automake
|
|
|
|
depends_on :libtool
|
2013-07-30 15:50:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "bash autogen.sh"
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|