d330f77cf3
QuickFIX is a full-featured open source FIX engine, currently compatible with the FIX 4.0-5.0 spec. Closes Homebrew/homebrew#8962. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
482 B
Ruby
16 lines
482 B
Ruby
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
|