homebrew-core/Formula/activemq-cpp.rb

14 lines
385 B
Ruby
Raw Normal View History

2014-05-31 22:49:02 +00:00
require "formula"
class ActivemqCpp < Formula
2014-05-31 22:49:02 +00:00
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"
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end