2010-06-06 21:43:57 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class SshCopyId < Formula
|
2011-09-07 17:34:58 +00:00
|
|
|
url 'http://ftp.lambdaserver.com/pub/OpenBSD/OpenSSH/portable/openssh-5.9p1.tar.gz'
|
2011-10-17 19:03:51 +00:00
|
|
|
version '5.9p1'
|
2010-06-06 21:43:57 +00:00
|
|
|
homepage 'http://openssh.org/'
|
2011-09-07 17:34:58 +00:00
|
|
|
sha1 'ac4e0055421e9543f0af5da607a72cf5922dcc56'
|
2010-06-06 21:43:57 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install 'contrib/ssh-copy-id'
|
|
|
|
man1.install 'contrib/ssh-copy-id.1'
|
|
|
|
end
|
|
|
|
end
|