80c7a132f4
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
23 lines
650 B
Ruby
23 lines
650 B
Ruby
require 'formula'
|
|
|
|
class Hub < Formula
|
|
url 'https://github.com/defunkt/hub/tarball/v1.10.1'
|
|
homepage 'http://defunkt.io/hub/'
|
|
head 'https://github.com/defunkt/hub.git'
|
|
md5 'd3ff9bcf489466a408020867b77f1d4d'
|
|
|
|
def install
|
|
system "rake", "install", "prefix=#{prefix}"
|
|
(prefix+'etc/bash_completion.d').install 'etc/hub.bash_completion.sh'
|
|
(share+'zsh/site-functions').install 'etc/hub.zsh_completion' => '_hub'
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Bash completion has been installed to:
|
|
#{etc}/bash_completion.d
|
|
|
|
zsh completion has been installed to:
|
|
#{HOMEBREW_PREFIX}/share/zsh/site-functions
|
|
EOS
|
|
end
|
|
end
|