aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/activemq-cpp.rb
blob: be230004d1b0355e223e66a5e56ef3415445d392 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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"

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