blob: b195ec7762f6bfbee36ff79f4a090b02377391e3 (
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.2'
homepage 'https://github.com/defunkt/hub#readme'
head 'https://github.com/defunkt/hub.git'
md5 '10924032b54b9ae9ed1b42c22bfecd3f'
def install
system "rake", "install", "prefix=#{prefix}"
end
end
|