49 lines
1.5 KiB
Ruby
49 lines
1.5 KiB
Ruby
class GitFlow < Formula
|
|
desc "Extensions to follow Vincent Driessen's branching model"
|
|
homepage "https://github.com/nvie/gitflow"
|
|
|
|
stable do
|
|
# Use the tag instead of the tarball to get submodules
|
|
url "https://github.com/nvie/gitflow.git",
|
|
:tag => "0.4.1",
|
|
:revision => "1ffb6b1091f05466d3cd27f2da9c532a38586ed5"
|
|
|
|
resource "completion" do
|
|
url "https://github.com/bobthecow/git-flow-completion/archive/0.4.2.2.tar.gz"
|
|
sha256 "1e82d039596c0e73bfc8c59d945ded34e4fce777d9b9bb45c3586ee539048ab9"
|
|
end
|
|
end
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "56826b30d91ffb54829f4792f88c673b1c3e748aa662bef5806e4a6f5d0ee015" => :el_capitan
|
|
sha1 "ab05739e882e5a930863ce03d2dcbe62ac329dc1" => :yosemite
|
|
sha1 "a3e07853d8152891aecf98eed7943edc07e2e1ec" => :mavericks
|
|
sha1 "0b02d71a300810649c677dd8f9b26ebc6351087f" => :mountain_lion
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/nvie/gitflow.git", :branch => "develop"
|
|
|
|
resource "completion" do
|
|
url "https://github.com/bobthecow/git-flow-completion.git", :branch => "develop"
|
|
end
|
|
end
|
|
|
|
conflicts_with "git-flow-avh"
|
|
|
|
def install
|
|
system "make", "prefix=#{libexec}", "install"
|
|
bin.write_exec_script libexec/"bin/git-flow"
|
|
|
|
resource("completion").stage do
|
|
bash_completion.install "git-flow-completion.bash"
|
|
zsh_completion.install "git-flow-completion.zsh"
|
|
end
|
|
end
|
|
|
|
test do
|
|
system "git", "flow", "init", "-d"
|
|
assert_equal "develop", shell_output("git rev-parse --abbrev-ref HEAD").strip
|
|
end
|
|
end
|