85c808f1e8
Closes Homebrew/homebrew#13796. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
19 lines
587 B
Ruby
19 lines
587 B
Ruby
require 'formula'
|
|
|
|
class Pdsh < Formula
|
|
homepage 'https://computing.llnl.gov/linux/pdsh.html'
|
|
url 'http://sourceforge.net/projects/pdsh/files/pdsh/pdsh-2.26/pdsh-2.26.tar.bz2'
|
|
sha1 'bdcec89760b93bd12107d8a785ca2710853cde75'
|
|
|
|
depends_on 'readline'
|
|
|
|
# don't strip binaries
|
|
skip_clean ['bin', 'lib']
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--with-ssh", "--without-rsh",
|
|
"--with-dshgroups", "--with-nodeupdown",
|
|
"--with-readline", "--without-xcpu", "--mandir=#{man}"
|
|
system "make install"
|
|
end
|
|
end
|