fff1d074c2
bobthecow has some bash-completion rules for the git-flow toolset. The formula now installs them. The rules are installed regardless of whether bash-completion is installed; if you're not using bash-completion, you'll just get an extra file lying around in Signed-off-by: Adam Vandenberg <flangy@gmail.com>
44 lines
1.3 KiB
Ruby
44 lines
1.3 KiB
Ruby
# -*- coding: utf-8 -*-
|
|
require 'formula'
|
|
|
|
class GitFlowCompletion <Formula
|
|
url 'git://github.com/bobthecow/git-flow-completion.git', :tag => '0.3'
|
|
version '0.3'
|
|
head 'git://github.com/bobthecow/git-flow-completion.git', :branch => 'develop'
|
|
|
|
def initialize
|
|
# We need to hard-code the formula name since Homebrew can't
|
|
# deduce it from the formula's filename, and the git download
|
|
# strategy really needs a valid name.
|
|
|
|
super "git-flow-completion"
|
|
end
|
|
|
|
homepage 'http://github.com/bobthecow/git-flow-completion'
|
|
end
|
|
|
|
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"
|
|
|
|
# Normally, etc files are installed directly into HOMEBREW_PREFIX,
|
|
# rather than being linked from the Cellar — this is so that
|
|
# configuration files don't get clobbered when you update. The
|
|
# bash-completion file isn't really configuration, though; it
|
|
# should be updated when we upgrade the package.
|
|
|
|
cellar_etc = prefix + 'etc'
|
|
bash_completion_d = cellar_etc + "bash_completion.d"
|
|
|
|
completion = GitFlowCompletion.new
|
|
completion.brew do
|
|
bash_completion_d.install "git-flow-completion.bash"
|
|
end
|
|
end
|
|
end
|