blob: db26af9f8a50d4ba41af1450581815611b034f87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  | 
require 'formula'
class GitFlowAvhCompletion < Formula
  homepage 'https://github.com/petervanderdoes/git-flow-completion'
  url 'https://github.com/petervanderdoes/git-flow-completion/archive/0.4.2.tar.gz'
  sha1 '5e311225fccc22e22c7f00abf8989c853bd2b48b'
  head 'https://github.com/petervanderdoes/git-flow-completion.git', :branch => 'develop'
end
class GitFlowAvh < Formula
  homepage 'https://github.com/petervanderdoes/gitflow'
  url 'https://github.com/petervanderdoes/gitflow/archive/1.5.1.tar.gz'
  sha1 'bb984d36ce1c89fc07877d9a3ebd3540633efd9a'
  head 'https://github.com/petervanderdoes/gitflow.git', :branch => 'develop'
  depends_on 'gnu-getopt'
  conflicts_with 'git-flow'
  def install
    system "make", "prefix=#{prefix}", "install"
    GitFlowAvhCompletion.new('git-flow-avh-completion').brew do
      (prefix+'etc/bash_completion.d').install "git-flow-completion.bash"
      (share+'zsh/site-functions').install "git-flow-completion.zsh"
    end
  end
  def caveats; <<-EOS.undent
    Create a ~/.gitflow_export file with the content
      export FLAGS_GETOPT_CMD="$(brew --prefix gnu-getopt)/bin/getopt"
     EOS
  end
  def test
    system "#{bin}/git-flow version"
  end
end
  |