aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pdsh.rb
blob: d073a7d32dde68320a908aeddfc0f7cda663b743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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'

  def install
    system "./configure", "--prefix=#{prefix}",
                          "--mandir=#{man}",
                          "--with-ssh",
                          "--without-rsh",
                          "--with-dshgroups",
                          "--with-nodeupdown",
                          "--with-readline",
                          "--without-xcpu"
    system "make install"
  end
end