From 1d75db78bec85f783ff273b7b1eb7e2e9c74bb3d Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Wed, 24 Oct 2012 10:14:02 -0700 Subject: [PATCH] Remove quickfix. This is a pure library that can build with or without Boost, but does not build against newer versions of Boost. Nothing else in Homebrew depends on this library, so remove. Users of this library will have to decide whether or not they want to use Boost. Closes Homebrew/homebrew#14135. --- Formula/quickfix.rb | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 Formula/quickfix.rb diff --git a/Formula/quickfix.rb b/Formula/quickfix.rb deleted file mode 100644 index 9f93040b06d..00000000000 --- a/Formula/quickfix.rb +++ /dev/null @@ -1,16 +0,0 @@ -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' - sha1 '8a20894a9320206beaeee11c3967dced8b8d2fc0' - - def install - system "./configure", "--disable-dependency-tracking", - "--prefix=#{prefix}", - "--with-java" - system "make" - ENV.j1 # failed otherwise - system "make install" - end -end