blob: 490f7262b59c8454f43cd55fff1ffc85ff948586 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  | 
require 'formula'
class SshCopyId < Formula
  homepage 'http://www.openssh.com/'
  url 'http://ftp.usa.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-6.7p1.tar.gz'
  mirror 'http://ftp3.usa.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-6.7p1.tar.gz'
  version '6.7p1'
  sha1 '14e5fbed710ade334d65925e080d1aaeb9c85bf6'
  bottle do
    cellar :any
    sha1 "5e9e5c5e53951435d1a6b408401301fbba2e6ee4" => :yosemite
    sha1 "4ea46c7153cf26546b9d794cf9b63722c191faec" => :mavericks
    sha1 "409ea4f6ba8a6f6d6fce94d33d6c8a59091ab89b" => :mountain_lion
  end
  def install
    bin.install 'contrib/ssh-copy-id'
    man1.install 'contrib/ssh-copy-id.1'
  end
end
  |