aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorIlmari Vacklin2010-06-06 23:42:45 +0300
committerAdam Vandenberg2010-06-15 20:07:52 -0700
commit11757ba63c9f9240e5f99787e2fc7034e77e6471 (patch)
treed2300163b930fcc3c5c18c4b91854f84e9fcf72f /Library
parenteabe0ef81c04e5693751855b883f6facdfd689c0 (diff)
downloadhomebrew-11757ba63c9f9240e5f99787e2fc7034e77e6471.tar.bz2
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>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/csshx.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/csshx.rb b/Library/Formula/csshx.rb
new file mode 100644
index 000000000..8c87f01e3
--- /dev/null
+++ b/Library/Formula/csshx.rb
@@ -0,0 +1,12 @@
+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