aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJohn Claus2013-07-26 22:24:54 -0600
committerAdam Vandenberg2013-07-30 10:34:32 -0700
commitf08a098f44d456f1dad6b3c04779a5ad1fed7d1a (patch)
treeb29801e902251efb42e8052a118d3f68cc09cbb5 /Library/Formula
parent384923b803312234bc679e225562be6b3c67508f (diff)
downloadhomebrew-f08a098f44d456f1dad6b3c04779a5ad1fed7d1a.tar.bz2
mussh 1.0
Closes #21479. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mussh.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/mussh.rb b/Library/Formula/mussh.rb
new file mode 100644
index 000000000..2f4c08ee6
--- /dev/null
+++ b/Library/Formula/mussh.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Mussh < Formula
+ homepage 'http://mussh.sourceforge.net/'
+ url 'http://downloads.sourceforge.net/project/mussh/mussh/1.0/mussh-1.0.tgz'
+ sha1 'cbb11c1a846c0d92bcae0de0d12376e401aa1846'
+
+ head 'cvs://:pserver:anonymous@mussh.cvs.sourceforge.net:/cvsroot/mussh'
+
+ def install
+ bin.install 'mussh'
+ man1.install 'mussh.1'
+ end
+end