homebrew-core/Formula/hub.rb

13 lines
294 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
2011-03-29 16:36:12 +00:00
url 'https://github.com/defunkt/hub/tarball/v1.6.0'
homepage 'https://github.com/defunkt/hub'
head 'git://github.com/defunkt/hub.git'
2011-03-29 16:36:12 +00:00
md5 '6347bee90f0ae5b7b7fc5c9e971f61b8'
2009-12-11 16:13:57 +00:00
def install
system "rake", "install", "prefix=#{prefix}"
2009-12-11 16:13:57 +00:00
end
end