a5f0f91421
Closes Homebrew/homebrew#14960. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
56 lines
1.3 KiB
Ruby
56 lines
1.3 KiB
Ruby
require 'formula'
|
|
|
|
class Cppcheck < Formula
|
|
homepage 'http://sourceforge.net/apps/mediawiki/cppcheck/index.php?title=Main_Page'
|
|
url 'https://github.com/danmar/cppcheck/tarball/1.56'
|
|
sha1 '195e8c819bff51bf2242133851052105a0619bf0'
|
|
|
|
head 'https://github.com/danmar/cppcheck.git'
|
|
|
|
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.include? '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"
|
|
else
|
|
system "make"
|
|
end
|
|
|
|
system "make", "DESTDIR=#{prefix}", "BIN=#{bin}", "install"
|
|
|
|
if build.include? 'with-gui'
|
|
cd "gui" do
|
|
if build.include? 'no-rules'
|
|
system "qmake", "HAVE_RULES=no"
|
|
else
|
|
system "qmake"
|
|
end
|
|
|
|
system "make"
|
|
bin.install "cppcheck-gui.app"
|
|
end
|
|
end
|
|
end
|
|
|
|
def test
|
|
system "#{bin}/cppcheck", "--version"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
--with-gui installs cppcheck-gui.app in:
|
|
#{bin}
|
|
|
|
To link the application to a normal Mac OS X location:
|
|
brew linkapps
|
|
or:
|
|
ln -s #{bin}/cppcheck-gui.app /Applications
|
|
EOS
|
|
end
|
|
end
|