73ea45a96f
This follows the openssh update to the same. Unfortunately I don't think it would be easy to source openssh Formula directly as that's in the homebrew-dupes repo. Closes Homebrew/homebrew#25817. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
14 lines
429 B
Ruby
14 lines
429 B
Ruby
require 'formula'
|
|
|
|
class SshCopyId < Formula
|
|
homepage 'http://www.openssh.com/'
|
|
url 'http://ftp5.usa.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-6.4p1.tar.gz'
|
|
mirror 'http://ftp3.usa.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-6.4p1.tar.gz'
|
|
version '6.4p1'
|
|
sha1 'cf5fe0eb118d7e4f9296fbc5d6884965885fc55d'
|
|
|
|
def install
|
|
bin.install 'contrib/ssh-copy-id'
|
|
man1.install 'contrib/ssh-copy-id.1'
|
|
end
|
|
end
|