2961a2b0c8
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
28 lines
875 B
Ruby
28 lines
875 B
Ruby
require 'formula'
|
|
|
|
class Pdsh < Formula
|
|
homepage 'https://code.google.com/p/pdsh/'
|
|
url 'http://pdsh.googlecode.com/files/pdsh-2.29.tar.bz2'
|
|
sha1 'a3e44ffba151f023d72df67cd7a7d37b4a80c80e'
|
|
|
|
option "without-dshgroups", "Compile without dshgroups which conflicts with genders. The option should be specified to load genders module first instead of dshgroups."
|
|
|
|
depends_on 'readline'
|
|
depends_on 'genders' => :optional
|
|
|
|
def install
|
|
args = ["--prefix=#{prefix}",
|
|
"--mandir=#{man}",
|
|
"--with-ssh",
|
|
"--without-rsh",
|
|
"--with-nodeupdown",
|
|
"--with-readline",
|
|
"--without-xcpu"]
|
|
|
|
args << '--with-genders' if build.with? 'genders'
|
|
args << ((build.include? 'without-dshgroups') ? '--without-dshgroups' : '--with-dshgroups')
|
|
|
|
system "./configure", *args
|
|
system "make install"
|
|
end
|
|
end
|