diff options
| author | Francisco Facioni | 2013-07-30 12:50:05 -0300 |
|---|---|---|
| committer | Adam Vandenberg | 2013-10-26 11:08:34 -0700 |
| commit | 02126d702207e98a3217060da4cfd33b5dc4b37a (patch) | |
| tree | 347f63f3013c6101fba54bdaa57f3e8ebae42790 /Library/Formula | |
| parent | 27fa18eb8a62cbfc6c8a1192f627dfa88d97a8f5 (diff) | |
| download | homebrew-02126d702207e98a3217060da4cfd33b5dc4b37a.tar.bz2 | |
activemq-cpp 3.7.1
Closes #21543.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/activemq-cpp.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/activemq-cpp.rb b/Library/Formula/activemq-cpp.rb new file mode 100644 index 000000000..eda1756b7 --- /dev/null +++ b/Library/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 |
