blob: 6659b94bd8a35567715fe771f6aadfa5c5be00e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Hub <Formula
head 'git://github.com/defunkt/hub.git', :tag => 'v0.3.0'
homepage 'http://github.com/defunkt/hub'
def initialize(*args)
super
# Force version instead of HEAD
@version = '0.3.0'
end
def install
system "rake", "install", "prefix=#{prefix}"
end
end
|