development/splint: Updated for version 3.1.2
This commit is contained in:
parent
467e2d2eed
commit
f44e9d9541
|
@ -16,3 +16,7 @@ Splint is designed to be flexible and allow programmers to select
|
|||
appropriate points on the effort-benefit curve for particular projects.
|
||||
As different checks are turned on and more information is given in code
|
||||
annotations the number of bugs that can be detected increases dramatically.
|
||||
|
||||
This package configures splint als the default lint if no other command by
|
||||
that name is encountered on the system.
|
||||
|
||||
|
|
|
@ -9,11 +9,11 @@
|
|||
splint: Splint (Secure Programming Lint)
|
||||
splint:
|
||||
splint: Splint is a tool for statically checking C programs for security
|
||||
splint: vulnerabilities and coding mistakes. With minimal effort, Splint
|
||||
splint: can be used as a better lint. If additional effort is invested
|
||||
splint: adding annotations to programs, Splint can perform stronger checking
|
||||
splint: than can be done by any standard lint.
|
||||
splint: vulnerabilities and coding mistakes.
|
||||
splint:
|
||||
splint: Splint is developed and maintained by the Secure Programming Group
|
||||
splint: at the University of Virginia Department of Computer Science. David
|
||||
splint: Evans is the project leader and the primary developer of Splint.
|
||||
splint:
|
||||
splint:
|
||||
splint:
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
# Modified by the SlackBuilds.org project
|
||||
|
||||
PRGNAM=splint
|
||||
VERSION=3.1.1
|
||||
VERSION=3.1.2
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
@ -14,6 +14,9 @@ TMP=${TMP:-/tmp/SBo}
|
|||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
# Exit immediately if a command exits with a non-zero status.
|
||||
set -e
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
|
@ -24,8 +27,8 @@ rm -rf $PKG
|
|||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xzvf $CWD/$PRGNAM-$VERSION.src.tgz || exit 1
|
||||
cd $PRGNAM-$VERSION || exit 1
|
||||
tar xzvf $CWD/$PRGNAM-$VERSION.src.tgz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
|
@ -37,12 +40,12 @@ CXXFLAGS="$SLKCFLAGS" \
|
|||
--sysconfdir=/etc \
|
||||
|| exit 1
|
||||
|
||||
make || exit 1
|
||||
make install DESTDIR=$PKG || exit 1
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find . -type f | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find . -type f | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
( cd $PKG/usr/man
|
||||
|
@ -58,6 +61,7 @@ cd html
|
|||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html
|
||||
cp *.htm *.html $PKG/usr/doc/$PRGNAM-$VERSION/html
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README.SBo
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="splint"
|
||||
VERSION="3.1.1"
|
||||
VERSION="3.1.2"
|
||||
HOMEPAGE="http://www.splint.org/"
|
||||
DOWNLOAD="http://www.splint.org/downloads/splint-3.1.1.src.tgz"
|
||||
MD5SUM="91635d98644312302f6f16abe73c2474"
|
||||
DOWNLOAD="http://www.splint.org/downloads/splint-3.1.2.src.tgz"
|
||||
MD5SUM="25f47d70bd9c8bdddf6b03de5949c4fd"
|
||||
MAINTAINER="Menno E. Duursma"
|
||||
EMAIL="druiloor@zonnet.nl"
|
||||
APPROVED="elohim"
|
||||
APPROVED="Erik Hanson"
|
Loading…
Reference in New Issue