homebrew-core/Formula/hub.rb
Mislav Marohnić c19195e2c3 upgrade hub to v1.10.5
Closes Homebrew/homebrew#18181.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-03-02 08:53:11 +00:00

20 lines
517 B
Ruby

require 'formula'
class Hub < Formula
homepage 'http://defunkt.io/hub/'
url 'https://github.com/defunkt/hub/tarball/v1.10.5'
sha1 '397d70213e653c6a503d64e95826c696dc6e099e'
head 'https://github.com/defunkt/hub.git'
def install
rake "install", "prefix=#{prefix}"
bash_completion.install 'etc/hub.bash_completion.sh'
zsh_completion.install 'etc/hub.zsh_completion' => '_hub'
end
test do
HOMEBREW_REPOSITORY.cd do
`#{bin}/hub ls-files -- bin`.chomp == 'bin/brew'
end
end
end