homebrew-core/Formula/git-integration.rb

41 lines
1.7 KiB
Ruby

class GitIntegration < Formula
desc "Manage git integration branches"
homepage "https://johnkeeping.github.io/git-integration/"
url "https://github.com/johnkeeping/git-integration/archive/v0.4.tar.gz"
sha256 "b0259e90dca29c71f6afec4bfdea41fe9c08825e740ce18409cfdbd34289cc02"
head "https://github.com/johnkeeping/git-integration.git"
bottle do
cellar :any_skip_relocation
sha256 "483d5e5411d0a197e8e1e123f88fb2559745506115e3884064616b5118f1c5c3" => :high_sierra
sha256 "c4679cfcf05245017bf840a67eeecf0fde1b52862d46d00e9f80d267c33aedbe" => :sierra
sha256 "f91de5bf8a16b8b54db99566b81862c7d1e898dd332fd2d4d4bd457694443d62" => :el_capitan
sha256 "149a1f6f3cc6a413795893c6d63d48e82264a383aa901bee796c4d6a217b0c9b" => :yosemite
sha256 "2bae67c0933f3e0e990a12f1f90dd319cd788736a0cb50ad9f57e01195639331" => :mavericks
end
depends_on "asciidoc" => [:build, :optional]
def install
ENV["XML_CATALOG_FILES"] = "#{etc}/xml/catalog"
(buildpath/"config.mak").write "prefix = #{prefix}"
system "make", "install"
system "make", "install-doc" if build.with? "asciidoc"
system "make", "install-completion"
end
test do
system "git", "init"
system "git", "commit", "--allow-empty", "-m", "An initial commit"
system "git", "checkout", "-b", "branch-a", "master"
system "git", "commit", "--allow-empty", "-m", "A commit on branch-a"
system "git", "checkout", "-b", "branch-b", "master"
system "git", "commit", "--allow-empty", "-m", "A commit on branch-b"
system "git", "checkout", "master"
system "git", "integration", "--create", "integration"
system "git", "integration", "--add", "branch-a"
system "git", "integration", "--add", "branch-b"
system "git", "integration", "--rebuild"
end
end