aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/quickfix.rb16
1 files changed, 16 insertions, 0 deletions
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