aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ssh-copy-id.rb
blob: 54c268a1714873f05931491c7f45b9a2022d86a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class SshCopyId < Formula
  homepage 'http://openssh.org/'
  url 'http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-6.0p1.tar.gz'
  mirror 'http://ftp.spline.de/pub/OpenBSD/OpenSSH/portable/openssh-6.0p1.tar.gz'
  version '6.0p1'
  sha1 'f691e53ef83417031a2854b8b1b661c9c08e4422'

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