blob: 6d0883b4d4dd5822ab5eb332fceb7187b4c3589b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class SshCopyId < Formula
  url 'http://ftp.lambdaserver.com/pub/OpenBSD/OpenSSH/portable/openssh-5.9p1.tar.gz'
  version '5.9p1'
  homepage 'http://openssh.org/'
  sha1 'ac4e0055421e9543f0af5da607a72cf5922dcc56'
  def install
    bin.install 'contrib/ssh-copy-id'
    man1.install 'contrib/ssh-copy-id.1'
  end
end
  |