aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hub.rb
blob: bc033e8d8b896a17742b5284522875e1f7a135f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Hub < Formula
  url 'https://github.com/defunkt/hub/tarball/v1.8.1'
  homepage 'https://github.com/defunkt/hub#readme'
  head 'https://github.com/defunkt/hub.git'
  md5 'e552caf1af3b4d007fd5d19ef25cc682'

  def install
    system "rake", "install", "prefix=#{prefix}"
  end
end