# Maintainer: George Rawlinson # Contributor: Jelle van der Waa # Contributor: Stéphane Gaudreault # ALARM: Kevin Mihelich # - remove makedepend on pandoc, don't generate manuals, don't install manuals we didn't generate pkgname=cppcheck pkgver=2.16.0 pkgrel=1 pkgdesc='A tool for static C/C++ code analysis' arch=('x86_64') url='http://cppcheck.sourceforge.net/' license=('GPL-3.0-or-later') depends=( 'python-pygments' 'tinyxml2' 'pcre' ) makedepends=( 'git' 'docbook-xsl' 'qt6-tools' 'qt6-base' 'qt6-declarative' 'python' 'cmake' 'clang' ) optdepends=( 'qt6-tools: run cppcheck-gui' 'python-pygments: cppcheck-htmlreport' 'clang: for cppcheck-gui integration' ) source=( "$pkgname::git+https://github.com/danmar/cppcheck.git#tag=$pkgver" 'translations-location.patch' ) sha512sums=('939c171e3d73fa70707fd0538f76b89b11926151eb72efbb7dee472f5e5f2ee7d66f195977c541580c5e8cb9977871e2b9aa1bb0681ea83470fec4e5b0cca272' 'd3528834d719017ec3a0e08005a293089b556622928defa1b37f940e62cb01165dcbd741e6d5e989c0156fb8789f7e63702af8b2390738648b2300a92f4ab0ae') b2sums=('6d3739b942a86429ffe23949226cb230f4e74127ff6fd984ffdae839562548448cb78c50f04fb48108aaa4bbafb5eaa67b1efb7aaef864b1424f94b9bf3ebe1d' '8156920eacc630cb5eceb2387937b747c84c6325bef906717cfbad68c122bdd27965da1e8070a560a0bed3a7b7c59ff5f0e116bb1d035c4c42f430c927a75b1f') prepare() { cd "$pkgname" # fix location of translations patch -p1 -i "$srcdir/translations-location.patch" } build() { export CXXFLAGS+=" -DNDEBUG" # Manuals pushd "$pkgname" xsversion=$(pacman -Qi docbook-xsl | grep ^Version | sed -e 's/.*: //' -e 's/-[0-9]$//') make DB2MAN=/usr/share/xml/docbook/xsl-stylesheets-${xsversion}-nons/manpages/docbook.xsl man #pandoc man/manual.md -o man/manual.html -s --number-sections --toc #pandoc man/reference-cfg-format.md -o man/reference-cfg-format.html -s --number-sections --toc #pandoc man/writing-addons.md -o man/writing-addons.html -s --number-sections --toc popd cd "$pkgname" cmake \ -B build \ -S . \ -D CMAKE_INSTALL_PREFIX=/usr \ -D CMAKE_BUILD_TYPE=RelWithDebInfo \ -D USE_MATCHCOMPILER=ON \ -D HAVE_RULES=ON \ -D BUILD_GUI=ON \ -D BUILD_SHARED_LIBS=OFF \ -D BUILD_TESTS=ON \ -D FILESDIR=/usr/share/cppcheck \ -D USE_BUNDLED_TINYXML2=OFF \ -D USE_QT6=ON cmake --build build } check() { cd "$pkgname/build/bin" ./testrunner -g -q } package() { cd "$pkgname" DESTDIR="$pkgdir" cmake --install build install -vDm644 -t "$pkgdir/usr/share/man/man1" cppcheck.1 install -vDm755 -t "$pkgdir/usr/bin" htmlreport/cppcheck-htmlreport #install -vDm644 -t "$pkgdir/usr/share/doc/" man/manual.html #install -vDm644 -t "$pkgdir/usr/share/doc/" man/reference-cfg-format.html #install -vDm644 -t "$pkgdir/usr/share/doc/" man/writing-addons.html # Fix location of language files install -d "${pkgdir}"/usr/share/cppcheck/cfg/lang mv "${pkgdir}"/usr/bin/cppcheck_*.qm "${pkgdir}"/usr/share/cppcheck/cfg/lang/ }