87e95d778f
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
299 B
Ruby
13 lines
299 B
Ruby
require 'formula'
|
|
|
|
class GitFlow <Formula
|
|
url 'git://github.com/nvie/gitflow.git', :tag => '0.3'
|
|
version '0.3'
|
|
head 'git://github.com/nvie/gitflow.git', :branch => 'develop'
|
|
|
|
homepage 'http://github.com/nvie/gitflow'
|
|
|
|
def install
|
|
system "make", "prefix=#{prefix}", "install"
|
|
end
|
|
end
|