aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git-flow.rb
blob: 96667179a430ca0ae47279ec6bc8cda89f47c626 (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.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