aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git-flow.rb
blob: 7e38e30539d2bae880a8685434dbaf243cd4061b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class GitFlow <Formula
  url 'git://github.com/nvie/gitflow.git', :tag => '0.2.1'
  version '0.2.1'
  head 'git://github.com/nvie/gitflow.git', :branch => 'develop'

  homepage 'http://github.com/nvie/gitflow'

  def install
    system "make", "prefix=#{prefix}", "install"
  end
end