homebrew-core/Formula/git-flow.rb
Justin Hileman 87e95d778f Bump git-flow formula to 0.3
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-12 17:32:40 -07:00

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