aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ssh-copy-id.rb
blob: 37f24ddacfb3313c741b0b634def03a88babc885 (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.6p1.tar.gz'
  mirror 'http://ftp3.usa.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-6.6p1.tar.gz'
  version '6.6p1'
  sha1 'b850fd1af704942d9b3c2eff7ef6b3a59b6a6b6e'

  bottle do
    cellar :any
    sha1 "c62e6863235b9cb0dc9c78c04971b8692332f935" => :mavericks
    sha1 "76b719c4c3391344d5aa2d22ded2fcc0db45f2c9" => :mountain_lion
    sha1 "4b679aea29d2ec0e9fd2292cc7ea6b3955747096" => :lion
  end

  def install
    bin.install 'contrib/ssh-copy-id'
    man1.install 'contrib/ssh-copy-id.1'
  end
end