74c83fa9f6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
18 lines
585 B
Ruby
18 lines
585 B
Ruby
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
|