aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Castell2012-12-12 16:22:44 +0100
committerAdam Vandenberg2013-01-08 07:33:20 -0800
commitde353b0485b418595e7dcd4c729475fe248aa078 (patch)
tree45411c2055f43ec7a16773ad29760e3bd4287420
parent815633b0c54268fdcab925ecd04407e5292a905a (diff)
downloadhomebrew-de353b0485b418595e7dcd4c729475fe248aa078.tar.bz2
mpssh 1.3.1
Closes #16534. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-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