aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Lumos2010-08-19 14:24:04 -0700
committerAdam Vandenberg2010-08-22 18:29:11 -0700
commit2bc91fd69a3fa7e71d7df245cd07901afa0ed0a7 (patch)
tree8a0eab80c72649059471b95f2542ad3f6d1c6406
parentb67da515086aa4dca166fcb07ca07ef2acd36939 (diff)
downloadhomebrew-2bc91fd69a3fa7e71d7df245cd07901afa0ed0a7.tar.bz2
New formula: pdsh, Parallel Distributed Shell
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/pdsh.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/pdsh.rb b/Library/Formula/pdsh.rb
new file mode 100644
index 000000000..ca5025456
--- /dev/null
+++ b/Library/Formula/pdsh.rb
@@ -0,0 +1,19 @@
+require 'formula'
+
+class Pdsh <Formula
+ url 'http://softlayer.dl.sourceforge.net/project/pdsh/pdsh/pdsh-2.18/pdsh-2.18.tar.bz2'
+ homepage 'https://computing.llnl.gov/linux/pdsh.html'
+ md5 'ff5dc11f25ce9c7474e71aafb5d293e8'
+
+ 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