homebrew-core/Formula/mussh.rb
Arne Jørgensen 60eb911579 mussh: removed HEAD option.
The HEAD URL refers to a CVS repository.

The CVS repository URL lacks a module name (should probably be
'mussh-dev'), but that seems outdated compared to the tar ball. It is
probably better to remove the HEAD option.

Closes Homebrew/homebrew#25949.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-16 10:06:40 +00:00

12 lines
289 B
Ruby

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'
def install
bin.install 'mussh'
man1.install 'mussh.1'
end
end