homebrew-core/Formula/csshx.rb
Ilmari Vacklin 972adb98b5 Add a formula for csshX.
csshX is an SSH multiplexer. It connects to multiple machines via SSH
and lets you enter the same commands on each one of them.

There is no build system, just a single Perl script to be installed into
bin/.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-06-15 20:07:52 -07:00

12 lines
282 B
Ruby

require 'formula'
class Csshx < Formula
url 'http://csshx.googlecode.com/files/csshX-0.72.tgz'
homepage 'http://code.google.com/p/csshx/'
md5 '15178bbdaaa8f949bd583bd639577232'
head 'http://csshx.googlecode.com/svn/trunk/'
def install
bin.install 'csshX'
end
end