Created
October 26, 2012 13:22
-
-
Save teopeurt/3958791 to your computer and use it in GitHub Desktop.
Homebrew Gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment