Skip to content

Instantly share code, notes, and snippets.

@nvie
Created March 19, 2010 18:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nvie/337982 to your computer and use it in GitHub Desktop.
Save nvie/337982 to your computer and use it in GitHub Desktop.
require 'formula'
class GitFlow <Formula
url 'git://github.com/nvie/gitflow.git'
version '0.2'
homepage 'http://github.com/nvie/gitflow'
md5 'da3d5ff107f8fec1dad9aa3c0bc357a3'
depends_on 'git'
def install
system "git", "submodule", "init"
system "git", "submodule", "update"
system "make", "prefix=#{prefix}", "install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment