blob: 21ee0ff68f87d4ca7a82a81ba434272f783b2815 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class SshCopyId <Formula
url 'http://ftp.heanet.ie/pub/OpenBSD/OpenSSH/portable/openssh-5.5p1.tar.gz'
version '5.5p1'
homepage 'http://openssh.org/'
md5 '88633408f4cb1eb11ec7e2ec58b519eb'
def install
bin.install 'contrib/ssh-copy-id'
man1.install 'contrib/ssh-copy-id.1'
end
end
|