homebrew-core/Formula/hub.rb
2010-01-24 13:24:07 +00:00

17 lines
316 B
Ruby

require 'formula'
class Hub <Formula
head 'git://github.com/defunkt/hub.git', :tag => 'v0.3.0'
homepage 'http://github.com/defunkt/hub'
def initialize(*args)
super
# Force version instead of HEAD
@version = '0.3.0'
end
def install
system "rake", "install", "prefix=#{prefix}"
end
end