homebrew-core/Formula/ssh-copy-id.rb
Benedikt Arnold dd9e3a4114 ssh-copy-id: add a mirror
Closes Homebrew/homebrew#14727.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-07 07:27:42 -07:00

14 lines
418 B
Ruby

require 'formula'
class SshCopyId < Formula
homepage 'http://openssh.org/'
url 'http://ftp.lambdaserver.com/pub/OpenBSD/OpenSSH/portable/openssh-6.0p1.tar.gz'
mirror 'http://ftp.spline.de/pub/OpenBSD/OpenSSH/portable/openssh-6.0p1.tar.gz'
version '6.0p1'
sha1 'f691e53ef83417031a2854b8b1b661c9c08e4422'
def install
bin.install 'contrib/ssh-copy-id'
man1.install 'contrib/ssh-copy-id.1'
end
end