aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mpssh.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/mpssh.rb b/Library/Formula/mpssh.rb
new file mode 100644
index 000000000..014ccd8ff
--- /dev/null
+++ b/Library/Formula/mpssh.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class Mpssh < Formula
+ homepage 'https://github.com/ndenev/mpssh'
+ url 'http://mpssh.totalterror.net/mpssh-1.3.1.tar.gz'
+ sha1 '4d80a07c6057372a98095f6c788efcfe9c3b030b'
+
+ def install
+ system "make", "CC=#{ENV.cc}"
+ bin.install "mpssh"
+ man1.install "mpssh.man" => "mpssh.1"
+ end
+
+ def test
+ system "#{bin}/mpssh"
+ end
+end