homebrew-core/Formula/hub.rb

18 lines
310 B
Ruby
Raw Normal View History

2009-12-11 16:13:57 +00:00
require 'formula'
class Hub <Formula
head 'git://github.com/defunkt/hub.git', :tag => 'v0.1.3'
2009-12-11 16:13:57 +00:00
homepage 'http://github.com/defunkt/hub'
def initialize(*args)
super
# Force version instead of HEAD
@version = '0.1.3'
2009-12-11 16:13:57 +00:00
end
def install
system "rake install prefix=#{prefix}"
2009-12-11 16:13:57 +00:00
end
end