blob: 014ccd8ffd890994eef1edf3ffac8a5d4c2fa5f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|