aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hub.rb
blob: f00a0ba37818dfe7b067995a6ad00adb7572db58 (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.6.1'
  homepage 'https://github.com/defunkt/hub'
  head 'git://github.com/defunkt/hub.git'
  md5 'a1e87ad54076f075f5d337ff8e0cc144'

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