blob: 177db24d7b1ca5bda967175e6058e45929df9893 (
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 'https://github.com/defunkt/hub.git'
  md5 'a1e87ad54076f075f5d337ff8e0cc144'
  def install
    system "rake", "install", "prefix=#{prefix}"
  end
end
  |