homebrew-core/Formula/hub.rb

27 lines
642 B
Ruby
Raw Normal View History

2009-12-11 16:13:57 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Hub < Formula
homepage 'http://defunkt.io/hub/'
url 'https://github.com/defunkt/hub/tarball/v1.10.4'
sha1 'b43f69f20563cb779d77a6beaf773bad8c49ad4c'
2009-12-11 16:13:57 +00:00
head 'https://github.com/defunkt/hub.git'
2009-12-11 16:13:57 +00:00
def install
system rake_bin, "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 rake_bin
require 'rbconfig'
ruby_rake = File.join RbConfig::CONFIG['bindir'], 'rake'
if File.exist? ruby_rake
ruby_rake
else
'/usr/bin/rake'
end
end
2009-12-11 16:13:57 +00:00
end