diff options
| author | Bas Kok | 2014-04-04 16:02:41 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2014-04-23 20:08:32 -0700 |
| commit | 28f4271407ff67576c61621869fb707911872afc (patch) | |
| tree | 277e76560dcc8416b535dc2eff032efcbbaf2041 /Library/Formula | |
| parent | d2711640542c5d98c41d9162c3cc201f9c4d312f (diff) | |
| download | homebrew-28f4271407ff67576c61621869fb707911872afc.tar.bz2 | |
tmux-cssh 0.1
Closes #28141.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/tmux-cssh.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/tmux-cssh.rb b/Library/Formula/tmux-cssh.rb new file mode 100644 index 000000000..bd6493bd0 --- /dev/null +++ b/Library/Formula/tmux-cssh.rb @@ -0,0 +1,18 @@ +require 'formula' + +class TmuxCssh < Formula + homepage 'https://github.com/dennishafemann/tmux-cssh' + url 'https://github.com/dennishafemann/tmux-cssh/archive/0.1.tar.gz' + sha1 '477a9079775ce48afe0c90699fa69f368e69cdfd' + + depends_on 'tmux' + + def install + bin.install 'tmux-cssh' + end + + test do + system "#{bin}/tmux-cssh", "--help" + end + +end |
