45 lines
1.6 KiB
Ruby
45 lines
1.6 KiB
Ruby
class Bazaar < Formula
|
|
desc "Friendly powerful distributed version control system"
|
|
homepage "https://bazaar.canonical.com/"
|
|
url "https://launchpad.net/bzr/2.7/2.7.0/+download/bzr-2.7.0.tar.gz"
|
|
sha256 "0d451227b705a0dd21d8408353fe7e44d3a5069e6c4c26e5f146f1314b8fdab3"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "506f81fddaadfb97bf1e923e16374d3bc6fba066e94d6cf4b0feadbc7bcf91a7" => :sierra
|
|
sha256 "75e4a4aa57887371b783839667da3a142805c60f13197d599f6c8ef95c104707" => :el_capitan
|
|
sha256 "7919335ffdd76bd54a3b58da3e7d9499f8bc6dd895b1d117390bb19ceaf08818" => :yosemite
|
|
sha256 "51a058a4ff6b070a62ce30d01a673bba74d65d4eab6a13a9d53696f24cceb80d" => :mavericks
|
|
end
|
|
|
|
def install
|
|
ENV.deparallelize # Builds aren't parallel-safe
|
|
|
|
# Make and install man page first
|
|
system "make", "man1/bzr.1"
|
|
man1.install "man1/bzr.1"
|
|
|
|
# Put system Python first in path
|
|
ENV.prepend_path "PATH", "/System/Library/Frameworks/Python.framework/Versions/Current/bin"
|
|
|
|
system "make"
|
|
inreplace "bzr", "#! /usr/bin/env python", "#!/usr/bin/python"
|
|
libexec.install "bzr", "bzrlib"
|
|
|
|
(bin/"bzr").write_env_script(libexec/"bzr", :BZR_PLUGIN_PATH => "+user:#{HOMEBREW_PREFIX}/share/bazaar/plugins")
|
|
end
|
|
|
|
test do
|
|
bzr = "#{bin}/bzr"
|
|
whoami = "Homebrew"
|
|
system bzr, "whoami", whoami
|
|
assert_match whoami, shell_output("#{bin}/bzr whoami")
|
|
system bzr, "init-repo", "sample"
|
|
system bzr, "init", "sample/trunk"
|
|
touch testpath/"sample/trunk/test.txt"
|
|
cd "sample/trunk" do
|
|
system bzr, "add", "test.txt"
|
|
system bzr, "commit", "-m", "test"
|
|
end
|
|
end
|
|
end
|