homebrew-core/Formula/hub.rb
Mislav Marohnić a07bac4b72 update hub to v1.8.4; add shell completion scripts
Closes Homebrew/homebrew#11099.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-03-20 18:08:26 -05:00

23 lines
639 B
Ruby

require 'formula'
class Hub < Formula
url 'https://github.com/defunkt/hub/tarball/v1.8.4'
homepage 'http://defunkt.io/hub/'
head 'https://github.com/defunkt/hub.git'
md5 '1ca041817c014d2d3a5267f2aed4157b'
def install
system "rake", "install", "prefix=#{prefix}"
(prefix+'etc/bash_completion.d').install 'etc/hub.bash_completion.sh'
(share+'zsh/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/functions
EOS
end
end