PKGBUILDs/community/cppcheck/PKGBUILD

77 lines
2.4 KiB
Bash
Raw Normal View History

2020-02-26 04:34:21 +00:00
# Maintainer: Jelle van der Waa <jelle@archlinux.org>
2020-06-07 16:34:44 +00:00
# Contributor: Stéphane Gaudreault <stephane@archlinux.org>
2020-02-26 04:34:21 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - remove makedepend on pandoc, don't generate manuals
pkgname=cppcheck
2020-06-21 16:42:47 +00:00
pkgver=2.1
pkgrel=1
2020-02-26 04:34:21 +00:00
pkgdesc="A tool for static C/C++ code analysis"
arch=('x86_64')
url="http://cppcheck.sourceforge.net/"
license=('GPL')
depends=('python-pygments' 'tinyxml2')
makedepends=('docbook-xsl' 'qt5-tools' 'qt5-base' 'python' 'cmake')
optdepends=('qt5-base: run cppcheck-gui'
2020-05-11 20:52:39 +00:00
'python-pygments: cppcheck-htmlreport'
2020-06-07 16:34:44 +00:00
'clang: for cppcheck-gui integration')
2020-02-26 04:34:21 +00:00
source=($pkgname-$pkgver.tar.gz::https://github.com/danmar/cppcheck/archive/${pkgver}.tar.gz
2020-06-21 16:42:47 +00:00
translations-location.patch cppcheck-2.1-tinyxml.patch)
sha1sums=('e59758410408fa0679df06e8c3f3dd4e8c930d00'
2020-02-26 04:34:21 +00:00
'03b0888438cf92ccdcbf307dbc3c35e65c91b844'
2020-06-21 16:42:47 +00:00
'6859e2350169af231cdb04336413a508c339a652')
2020-02-26 04:34:21 +00:00
prepare() {
cd "${pkgname}-${pkgver}"
patch -Np1 -i $srcdir/translations-location.patch
2020-06-21 16:42:47 +00:00
patch -Np1 -i $srcdir/cppcheck-2.1-tinyxml.patch
2020-02-26 04:34:21 +00:00
2020-06-21 16:42:47 +00:00
#sed -i 's/2.0/2.0.0/' cmake/versions.cmake
2020-05-11 20:52:39 +00:00
2020-02-26 04:34:21 +00:00
# Make sure bundled tinyxml is not used
rm -r externals/tinyxml
mkdir build
}
build() {
cd "${pkgname}-${pkgver}"
export CXXFLAGS+=" -DNDEBUG"
# Manuals
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
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release \
-DUSE_MATCHCOMPILER=yes -DHAVE_RULES=yes \
-DBUILD_GUI=yes -DBUILD_SHARED_LIBS:BOOL=OFF \
-DBUILD_TESTS=yes -DFILESDIR=/usr/share/cppcheck \
..
make
}
check() {
cd "${pkgname}-${pkgver}/build/bin"
./testrunner -g -q
}
package() {
cd "${pkgname}-${pkgver}/build"
make DESTDIR="${pkgdir}" install
cd ..
install -D -p -m 644 cppcheck.1 "${pkgdir}"/usr/share/man/man1/cppcheck.1
install -D -p -m 755 htmlreport/cppcheck-htmlreport "${pkgdir}"/usr/bin/cppcheck-htmlreport
# 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/
}