development/cppcheck: Updated for version 2.6
Signed-off-by: Gustavo B. Schenkel <gustavo.schenkel@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
d365daf8ac
commit
7434c4ecfd
|
@ -25,8 +25,8 @@
|
|||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=cppcheck
|
||||
VERSION=${VERSION:-1.76}
|
||||
BUILD=${BUILD:-2}
|
||||
VERSION=${VERSION:-2.6}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
||||
|
@ -40,9 +40,6 @@ if [ -z "$ARCH" ]; then
|
|||
esac
|
||||
fi
|
||||
|
||||
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
||||
# the name of the created package would be, and then exit. This information
|
||||
# could be useful to other scripts.
|
||||
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
||||
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
||||
exit 0
|
||||
|
@ -81,29 +78,34 @@ find -L . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
make install \
|
||||
CFLAGS="$SLKCFLAGS -Wall -Wextra -pedantic -Wno-long-long -DNDEBUG" \
|
||||
CXXFLAGS="$SLKCFLAGS -Wall -Wextra -pedantic -Wno-long-long -DNDEBUG" \
|
||||
SRCDIR=build HAVE_RULES=yes CFGDIR=/usr/share/cppcheck/cfg DESTDIR=$PKG
|
||||
mkdir -p build
|
||||
cd build
|
||||
cmake \
|
||||
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS -DNDEBUG -Wall -Wno-sign-compare -Wno-unused-function" \
|
||||
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS -DNDEBUG -Wall -Wno-sign-compare -Wno-unused-function" \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DLIB_SUFFIX=${LIBDIRSUFFIX} \
|
||||
-DMAN_INSTALL_DIR=/usr/man \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DBUILD_GUI=ON \
|
||||
-DUSE_MATCHCOMPILER=ON \
|
||||
-DHAVE_RULES=ON \
|
||||
..
|
||||
make
|
||||
make install/strip DESTDIR=$PKG
|
||||
cd ..
|
||||
|
||||
if [ x"$MAKEMAN" == "xyes" ]; then
|
||||
xsltproc \
|
||||
--nonet \
|
||||
--param man.charmap.use.subset "0" \
|
||||
--param make.year.ranges "1" \
|
||||
--param make.single.year.ranges "1" \
|
||||
--output man/ \
|
||||
/etc/asciidoc/docbook-xsl/manpage.xsl \
|
||||
man/$PRGNAM.1.xml
|
||||
mkdir -p $PKG/usr/man/man1
|
||||
gzip -9c man/$PRGNAM.1 > $PKG/usr/man/man1/$PRGNAM.1.gz
|
||||
fi
|
||||
rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
find $PKG -name perllocal.pod -o -name ".packlist" -o -name "*.bs" | xargs rm -f || true
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS COPYING $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
AUTHORS COPYING readme.{md,txt} \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="cppcheck"
|
||||
VERSION="1.76"
|
||||
VERSION="2.6"
|
||||
HOMEPAGE="http://cppcheck.sourceforge.net/"
|
||||
DOWNLOAD="https://sourceforge.net/projects/cppcheck/files/cppcheck/1.76/cppcheck-1.76.tar.gz"
|
||||
MD5SUM="67a141f10e8d49e49bbbeea76e87dfb7"
|
||||
DOWNLOAD="https://github.com/danmar/cppcheck/archive/2.6/cppcheck-2.6.tar.gz"
|
||||
MD5SUM="11154ab69f88d3f6b275233cd30cb540"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in New Issue