aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cppcheck.rb
blob: 486cd3b2af02fadf8614f89cc5c9bc8002c00ecb (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
require "formula"

class Cppcheck < Formula
  homepage "http://sourceforge.net/apps/mediawiki/cppcheck/index.php?title=Main_Page"
  url "https://github.com/danmar/cppcheck/archive/1.67.tar.gz"
  sha1 "14b886e5cac631cec11a3f8efbdeaed15ddcc7d3"

  head "https://github.com/danmar/cppcheck.git"

  bottle do
    sha1 "16d24ece4e95c8cecf8a79c3f63c326f33dc58cf" => :yosemite
    sha1 "63a24e70db08ec69f50e5705b6dd4066cad51b36" => :mavericks
    sha1 "7096f14ebc2826b151d61d573ef07841ae05cea1" => :mountain_lion
  end

  option "no-rules", "Build without rules (no pcre dependency)"
  option "with-gui", "Build the cppcheck gui (requires Qt)"

  depends_on "pcre" unless build.include? "no-rules"
  depends_on "qt" if build.with? "gui"

  def install
    # Man pages aren't installed as they require docbook schemas.

    # Pass to make variables.
    if build.include? "no-rules"
      system "make", "HAVE_RULES=no", "CFGDIR=#{prefix}/cfg"
    else
      system "make", "HAVE_RULES=yes", "CFGDIR=#{prefix}/cfg"
    end

    system "make", "DESTDIR=#{prefix}", "BIN=#{bin}", "CFGDIR=#{prefix}/cfg", "install"

    if build.with? "gui"
      cd "gui" do
        # fix make not finding cfg directory:
        # https://github.com/Homebrew/homebrew/issues/27756
        inreplace "gui.qrc", "../cfg/", "#{prefix}/cfg/"

        if build.include? "no-rules"
          system "qmake", "HAVE_RULES=no"
        else
          system "qmake"
        end

        system "make"
        bin.install "cppcheck-gui.app"
      end
    end
  end

  test do
    system "#{bin}/cppcheck", "--version"
  end
end