aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/quickfix.rb
blob: 37b324fb74d9ff2ab1973237272263482a42ad6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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