From ed3fc78cb143cc2ceff53ef8c6f51d85f01320a1 Mon Sep 17 00:00:00 2001 From: Hans-Peter Suter Date: Sun, 4 Dec 2011 11:37:36 +0100 Subject: QuickFIX 1.13.3 QuickFIX is a full-featured open source FIX engine, currently compatible with the FIX 4.0-5.0 spec. Closes #8962. Signed-off-by: Adam Vandenberg --- Library/Formula/quickfix.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Library/Formula/quickfix.rb (limited to 'Library/Formula') diff --git a/Library/Formula/quickfix.rb b/Library/Formula/quickfix.rb new file mode 100644 index 000000000..37b324fb7 --- /dev/null +++ b/Library/Formula/quickfix.rb @@ -0,0 +1,16 @@ +require 'formula' + +class Quickfix < Formula + homepage 'http://www.quickfixengine.org/index.html' + url 'http://downloads.sourceforge.net/project/quickfix/quickfix/1.13.3/quickfix-1.13.3.tar.gz' + md5 '1e569a32107ecfc1de9c15bdcb5dc360' + + def install + system "./configure", "--disable-dependency-tracking", + "--prefix=#{prefix}", + "--with-java" + system "make" + ENV.j1 # failed otherwise + system "make install" + end +end -- cgit v1.2.3