blob: 5be2611787de2e5f612bb62ed782b7c70e497aa7 (
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
 | require 'formula'
class Bazaar < Formula
  homepage 'http://bazaar.canonical.com/'
  url 'https://launchpad.net/bzr/2.6/2.6.0/+download/bzr-2.6.0.tar.gz'
  sha1 '5eb4d0367c6d83396250165da5bb2c8a9f378293'
  bottle do
    cellar :any
    sha1 "13eb87ddde4c81d02a54ba014712fa5d152b3f3c" => :yosemite
    sha1 "79a3661c5a85e6041cbabb12fb237263dee1eaa9" => :mavericks
    sha1 "d13db375fa4c2edf0119ffefbb995e4da59c7681" => :mountain_lion
  end
  def install
    ENV.j1 # 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.install_symlink libexec+'bzr'
  end
end
 |