aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hub.rb
blob: 9ceaa1de2dc5573551074762b935a5f32bf97d1f (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.5.0'
  homepage 'https://github.com/defunkt/hub'
  head 'git://github.com/defunkt/hub.git'
  md5 '3e719ea33cd2b78795dbfc6f8c5e41f8'

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