blob: 204040728170c6ae6cf578970496b5783271afad (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require 'formula'
class Hub <Formula
url 'http://github.com/defunkt/hub/tarball/v1.0.2'
homepage 'http://github.com/defunkt/hub'
md5 '4e31316783e53ba200580d6557bb9314'
def install
system "rake", "install", "prefix=#{prefix}"
end
end
|