e175a2015d
- The OSX patch is already in upstream and is only required for cppcheck 1.68. This commit ensures the patch is only applied to the ‘stable’ build. Closes Homebrew/homebrew#37511. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
74 lines
1.9 KiB
Ruby
74 lines
1.9 KiB
Ruby
class Cppcheck < Formula
|
|
homepage "http://sourceforge.net/apps/mediawiki/cppcheck/index.php?title=Main_Page"
|
|
|
|
stable do
|
|
url "https://github.com/danmar/cppcheck/archive/1.68.tar.gz"
|
|
sha1 "f08ef07f750f92fafe4f960166072e9d1088d74e"
|
|
|
|
# Upstream patches for OS X + Clang compilation
|
|
patch do
|
|
url "https://github.com/danmar/cppcheck/commit/141a071.diff"
|
|
sha1 "4ccc8d814709d0e221c533a5556da4b1aa5fbead"
|
|
end
|
|
end
|
|
|
|
head "https://github.com/danmar/cppcheck.git"
|
|
|
|
bottle do
|
|
revision 1
|
|
sha256 "fd979cd455c04c543bdb81be9c98d265cdab3a451302f1b506a5225c4b5d4bef" => :yosemite
|
|
sha256 "aa2e66721ab0f605c706c6366c0e92d50b6d1281c2f1656f0f25301b6db29d66" => :mavericks
|
|
end
|
|
|
|
option "without-rules", "Build without rules (no pcre dependency)"
|
|
option "with-gui", "Build the cppcheck gui (requires Qt)"
|
|
|
|
deprecated_option "no-rules" => "without-rules"
|
|
|
|
depends_on "pcre" if build.with? "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.with? "rules"
|
|
system "make", "HAVE_RULES=yes", "CFGDIR=#{prefix}/cfg"
|
|
else
|
|
system "make", "HAVE_RULES=no", "CFGDIR=#{prefix}/cfg"
|
|
end
|
|
|
|
system "make", "DESTDIR=#{prefix}", "BIN=#{bin}", "CFGDIR=#{prefix}/cfg", "install"
|
|
|
|
# make sure cppcheck can find its configure directory, #26194
|
|
prefix.install "cfg"
|
|
|
|
if build.with? "gui"
|
|
cd "gui" do
|
|
if build.with? "rules"
|
|
system "qmake", "HAVE_RULES=yes"
|
|
else
|
|
system "qmake", "HAVE_RULES=no"
|
|
end
|
|
|
|
system "make"
|
|
prefix.install "cppcheck-gui.app"
|
|
end
|
|
end
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<-EOS.undent
|
|
#include <iostream>
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
cout << "Hello World!" << endl;
|
|
return 0;
|
|
}
|
|
EOS
|
|
system "#{bin}/cppcheck", "test.cpp"
|
|
end
|
|
end
|