diff options
| author | Adam Vandenberg | 2010-06-06 14:43:57 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2010-06-06 14:43:57 -0700 | 
| commit | f42f2900a772ff106ab7dece5701a9bbce1cd103 (patch) | |
| tree | f56d36065ae5fd9c4ace6146ffaa38d6b01f942d /Library/Formula/ssh-copy-id.rb | |
| parent | 9dc40ecd8eb81ee05da6a28005f96afead92b51b (diff) | |
| download | homebrew-f42f2900a772ff106ab7dece5701a9bbce1cd103.tar.bz2 | |
ssh-copy-id
Diffstat (limited to 'Library/Formula/ssh-copy-id.rb')
| -rw-r--r-- | Library/Formula/ssh-copy-id.rb | 13 | 
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/ssh-copy-id.rb b/Library/Formula/ssh-copy-id.rb new file mode 100644 index 000000000..21ee0ff68 --- /dev/null +++ b/Library/Formula/ssh-copy-id.rb @@ -0,0 +1,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  | 
