2009-12-11 16:13:57 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Hub < Formula
|
2012-07-24 11:26:07 +00:00
|
|
|
url 'https://github.com/defunkt/hub/tarball/v1.10.2'
|
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-07-24 11:26:07 +00:00
|
|
|
md5 '12357b7542d1caf4ec049343e8564057'
|
2009-12-11 16:13:57 +00:00
|
|
|
|
|
|
|
def install
|
2012-07-06 08:37:57 +00:00
|
|
|
system rake_bin, "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
|
|
|
|
|
2012-07-06 08:37:57 +00:00
|
|
|
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
|