From 869e3f2d4189fc9b4af6cf6f9b897b5f14af678f Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 20 Apr 2022 01:17:13 -0400 Subject: libraries/libticables2: Strip binaries. Signed-off-by: B. Watson --- libraries/libticables2/libticables2.SlackBuild | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) (limited to 'libraries/libticables2') diff --git a/libraries/libticables2/libticables2.SlackBuild b/libraries/libticables2/libticables2.SlackBuild index 51d1d728da..f7e9129092 100644 --- a/libraries/libticables2/libticables2.SlackBuild +++ b/libraries/libticables2/libticables2.SlackBuild @@ -20,25 +20,26 @@ # see fit. Or as I see fit. Or as I fit. Although # that is unlikely, as I am rather tall. +# 20220420 bkw: Modified by SlackBuilds.org, BUILD=3: +# - strip library. +# - i486 => i586. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=libticables2 VERSION=${VERSION:-1.3.4} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + 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 @@ -48,8 +49,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -73,9 +74,9 @@ 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 \ + -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 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -89,14 +90,14 @@ CXXFLAGS="$SLKCFLAGS" \ make -DESTDIR=$PKG make install +DESTDIR=$PKG make install-strip mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a AUTHORS CONFIG ChangeLog COPYING README docs \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -find $PKG/usr/doc -name "Makefile" -exec rm {} \; -find $PKG/usr/doc -type f -exec chmod 644 {} \; +find $PKG/usr/doc -name "Makefile" -exec rm {} \+ +find $PKG/usr/doc -type f -exec chmod 644 {} \+ rm -f $PKG/usr/lib*/*.la -- cgit v1.2.3-65-gdbad