homebrew-core/Formula/git-flow.rb

31 lines
923 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class GitFlowCompletion < Formula
homepage 'https://github.com/bobthecow/git-flow-completion'
2013-03-18 19:18:39 +00:00
url 'https://github.com/bobthecow/git-flow-completion/archive/0.4.2.tar.gz'
sha1 '5e311225fccc22e22c7f00abf8989c853bd2b48b'
2011-05-27 05:02:55 +00:00
head 'https://github.com/bobthecow/git-flow-completion.git', :branch => 'develop'
end
2011-03-10 05:11:03 +00:00
class GitFlow < Formula
homepage 'https://github.com/nvie/gitflow'
# Use the tag instead of the tarball to get submodules
2011-05-27 05:02:55 +00:00
url 'https://github.com/nvie/gitflow.git', :tag => '0.4.1'
version '0.4.1'
head 'https://github.com/nvie/gitflow.git', :branch => 'develop'
conflicts_with 'git-flow-avh'
def install
system "make", "prefix=#{prefix}", "install"
GitFlowCompletion.new('git-flow-completion').brew do
(prefix+'etc/bash_completion.d').install "git-flow-completion.bash"
(share+'zsh/site-functions').install "git-flow-completion.zsh"
end
end
end