homebrew-core/Formula/git-flow.rb

31 lines
926 B
Ruby

require 'formula'
class GitFlowCompletion < Formula
homepage 'https://github.com/bobthecow/git-flow-completion'
url 'https://github.com/bobthecow/git-flow-completion/archive/0.4.2.2.tar.gz'
sha1 'd6a041b22ebdfad40efd3dedafd84c020d3f4cb4'
head 'https://github.com/bobthecow/git-flow-completion.git', :branch => 'develop'
end
class GitFlow < Formula
homepage 'https://github.com/nvie/gitflow'
# Use the tag instead of the tarball to get submodules
url 'https://github.com/nvie/gitflow.git', :tag => '0.4.1'
head 'https://github.com/nvie/gitflow.git', :branch => 'develop'
conflicts_with 'git-flow-avh'
def install
system "make", "prefix=#{libexec}", "install"
bin.write_exec_script libexec/'bin/git-flow'
GitFlowCompletion.new('git-flow-completion').brew do
bash_completion.install "git-flow-completion.bash"
zsh_completion.install "git-flow-completion.zsh"
end
end
end