contrib/cppcheck/Pkgfile

22 lines
591 B
Plaintext
Raw Normal View History

2016-06-10 13:42:28 +02:00
# Description: Static analysis tool for C/C++ code
# URL: http://cppcheck.sourceforge.net/
2018-02-18 13:18:27 +01:00
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
2016-06-10 13:42:28 +02:00
# Depends on: libpcre python docbook-xsl
name=cppcheck
2019-06-29 18:29:08 +02:00
version=1.88
2016-06-10 13:42:28 +02:00
release=1
2017-11-25 19:20:25 +01:00
source=(https://github.com/danmar/$name/archive/$version/$name-$version.tar.gz)
2016-06-10 13:42:28 +02:00
build() {
cd $name-$version
make install SRCDIR=build \
HAVE_RULES=yes \
CFGDIR=/usr/share/cppcheck/cfg \
DESTDIR=$PKG
make man DB2MAN=/usr/share/xml/docbook/xsl-stylesheets/manpages/docbook.xsl
install -Dm 0444 $name.1 $PKG/usr/share/man/man1/$name.1
}