2009-12-11 16:13:57 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Hub < Formula
|
2012-05-28 17:52:47 +00:00
|
|
|
url 'https://github.com/defunkt/hub/tarball/v1.10.1'
|
2012-03-20 22:51:50 +00:00
|
|
|
homepage 'http://defunkt.io/hub/'
|
2011-05-27 05:02:55 +00:00
|
|
|
head 'https://github.com/defunkt/hub.git'
|
2012-05-28 17:52:47 +00:00
|
|
|
md5 'd3ff9bcf489466a408020867b77f1d4d'
|
2009-12-11 16:13:57 +00:00
|
|
|
|
|
|
|
def install
|
2010-04-27 19:58:30 +00:00
|
|
|
system "rake", "install", "prefix=#{prefix}"
|
2012-03-20 22:51:50 +00:00
|
|
|
(prefix+'etc/bash_completion.d').install 'etc/hub.bash_completion.sh'
|
2012-04-29 06:55:56 +00:00
|
|
|
(share+'zsh/site-functions').install 'etc/hub.zsh_completion' => '_hub'
|
2012-03-20 22:51:50 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
Bash completion has been installed to:
|
|
|
|
#{etc}/bash_completion.d
|
|
|
|
|
|
|
|
zsh completion has been installed to:
|
2012-04-29 06:55:56 +00:00
|
|
|
#{HOMEBREW_PREFIX}/share/zsh/site-functions
|
2012-03-20 22:51:50 +00:00
|
|
|
EOS
|
2009-12-11 16:13:57 +00:00
|
|
|
end
|
|
|
|
end
|