mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-06 08:26:50 +01:00
63daf9f79a
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
106 lines
2.7 KiB
Bash
106 lines
2.7 KiB
Bash
#!/bin/bash
|
||
|
||
# Slackware build script for splint
|
||
|
||
# Written by Menno Duursma <druiloor@zonnet.nl>
|
||
# Modified by the SlackBuilds.org project
|
||
# Maintained by Ozan Türkyılmaz <ozan.turkyilmaz@gmail.com>
|
||
|
||
# This program is free software. It comes without any warranty.
|
||
# Granted WTFPL, Version 2, as published by Sam Hocevar. See
|
||
# http://sam.zoy.org/wtfpl/COPYING for more details.
|
||
|
||
cd $(dirname $0) ; CWD=$(pwd)
|
||
|
||
PRGNAM=splint
|
||
VERSION=${VERSION:-3.1.2}
|
||
BUILD=${BUILD:-1}
|
||
TAG=${TAG:-_SBo}
|
||
PKGTYPE=${PKGTYPE:-tgz}
|
||
|
||
if [ -z "$ARCH" ]; then
|
||
case "$( uname -m )" in
|
||
i?86) ARCH=i586 ;;
|
||
arm*) ARCH=arm ;;
|
||
*) ARCH=$( uname -m ) ;;
|
||
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
|
||
fi
|
||
|
||
TMP=${TMP:-/tmp/SBo}
|
||
PKG=$TMP/package-$PRGNAM
|
||
OUTPUT=${OUTPUT:-/tmp}
|
||
|
||
set -e
|
||
|
||
if [ "$ARCH" = "i586" ]; then
|
||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||
LIBDIRSUFFIX=""
|
||
elif [ "$ARCH" = "i686" ]; then
|
||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||
LIBDIRSUFFIX=""
|
||
elif [ "$ARCH" = "x86_64" ]; then
|
||
SLKCFLAGS="-O2 -fPIC"
|
||
LIBDIRSUFFIX="64"
|
||
else
|
||
SLKCFLAGS="-O2"
|
||
LIBDIRSUFFIX=""
|
||
fi
|
||
|
||
rm -rf $PKG
|
||
mkdir -p $TMP $PKG $OUTPUT
|
||
cd $TMP
|
||
rm -rf $PRGNAM-$VERSION
|
||
tar xvf $CWD/$PRGNAM-$VERSION.src.tgz
|
||
cd $PRGNAM-$VERSION
|
||
chown -R root:root .
|
||
find -L . \
|
||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||
|
||
CFLAGS="$SLKCFLAGS" \
|
||
CXXFLAGS="$SLKCFLAGS" \
|
||
./configure \
|
||
--prefix=/usr \
|
||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||
--sysconfdir=/etc \
|
||
--localstatedir=/var \
|
||
--mandir=/usr/man \
|
||
--build=$ARCH-slackware-linux
|
||
|
||
# Fix for bison-3 (LDFLAGS doesn't work)
|
||
sed -i \
|
||
-e 's/^LIBS = $/LIBS = -lfl/' \
|
||
src/Makefile
|
||
|
||
make -j1
|
||
make install DESTDIR=$PKG
|
||
|
||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||
|
||
( cd $PKG/usr/man
|
||
find . -type f -exec gzip -9 {} \;
|
||
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||
)
|
||
|
||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html
|
||
cp -a README $PKG/usr/doc/$PRGNAM-$VERSION
|
||
cp -a doc/manual.pdf $PKG/usr/doc/$PRGNAM-$VERSION
|
||
cp -a doc/html/*.htm{,l} $PKG/usr/doc/$PRGNAM-$VERSION/html
|
||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||
|
||
mkdir -p $PKG/install
|
||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||
|
||
cd $PKG
|
||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|