aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bear.rb
blob: d8d840cad404b99bf9be419adff2cb2a69cbdebf (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
class Bear < Formula
  homepage "https://github.com/rizsotto/Bear"
  url "https://github.com/rizsotto/Bear/archive/2.0.1.tar.gz"
  sha1 "31cf2b82a44f6eb5a3740c9f8aa9f2cd662e9a68"
  head "https://github.com/rizsotto/Bear.git"

  bottle do
    sha1 "6d868313f7e4afa2ac5e5a8979f47299e776a439" => :yosemite
    sha1 "1aa1d89fe02160069fb32c666e982c4b0fdd5841" => :mavericks
    sha1 "a576d3a8ab01c8bbdb1c387d314736d6d3c7cae7" => :mountain_lion
  end

  depends_on :python if MacOS.version <= :snow_leopard
  depends_on "cmake" => :build
  depends_on "pkg-config" => :build
  depends_on "libconfig"

  def install
    mkdir "build" do
      system "cmake", "..", *std_cmake_args
      system "make", "install"
    end
  end

  test do
    system "#{bin}/bear", "true"
    assert File.exist? "compile_commands.json"
  end
end