aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/clusterit.rb
diff options
context:
space:
mode:
authorMike McQuaid2014-12-25 22:16:29 +0000
committerMike McQuaid2014-12-27 11:09:32 +0000
commit43882a26b5f15da065ccb32dac0b78622ba026e1 (patch)
tree4acb8242bc9701bae5ea3b921b9e93121ae862cf /Library/Formula/clusterit.rb
parent995ee81399c5d056d26cfe531fd43dad3408e603 (diff)
downloadhomebrew-43882a26b5f15da065ccb32dac0b78622ba026e1.tar.bz2
Migrate some formula with hard-X11 dependencies.
We have the homebrew-x11 tap for this reason so let's migrate everything without any reverse dependencies. Ideally I'd also like to migrate everything that's :recommended and the GTK formulae through there too (or to a dedicated homebrew-gtk).
Diffstat (limited to 'Library/Formula/clusterit.rb')
-rw-r--r--Library/Formula/clusterit.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/Library/Formula/clusterit.rb b/Library/Formula/clusterit.rb
deleted file mode 100644
index 787fc1692..000000000
--- a/Library/Formula/clusterit.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-require 'formula'
-
-class Clusterit < Formula
- homepage 'http://www.garbled.net/clusterit.html'
- url 'https://downloads.sourceforge.net/project/clusterit/clusterit/clusterit-2.5/clusterit-2.5.tar.gz'
- sha1 '65d36116665179dd16029ac53182fde92d868020'
-
- conflicts_with 'couchdb-lucene', :because => 'both install a `run` binary'
- conflicts_with 'pdsh', :because => 'both install `dshbak`'
-
- depends_on :x11
-
- def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}"
- system "make install"
- end
-end