blob: e57876129212e20d87183dfbf546e7976fa6dc62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | 
require 'formula'
class Clusterit < Formula
  homepage 'http://www.garbled.net/clusterit.html'
  url 'http://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
  |