summaryrefslogtreecommitdiffstats
path: root/libraries/libtifiles2
diff options
context:
space:
mode:
author B. Watson <yalhcru@gmail.com>2022-04-24 13:25:22 -0400
committer B. Watson <yalhcru@gmail.com>2022-04-24 13:25:22 -0400
commit2d8cf2f373b12b5e5aaab7bdacae6d8378e7bb71 (patch)
tree9597ab73ae58a227bd3be5785b774cd793055139 /libraries/libtifiles2
parent79974248e7cd5b1ee60386683b0d48a7ecddd0c8 (diff)
downloadslackbuilds-2d8cf2f373b12b5e5aaab7bdacae6d8378e7bb71.tar.gz
slackbuilds-2d8cf2f373b12b5e5aaab7bdacae6d8378e7bb71.tar.xz
libraries/libtifiles2: Strip library, fix docs.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'libraries/libtifiles2')
-rw-r--r--libraries/libtifiles2/libtifiles2.SlackBuild15
1 files changed, 7 insertions, 8 deletions
diff --git a/libraries/libtifiles2/libtifiles2.SlackBuild b/libraries/libtifiles2/libtifiles2.SlackBuild
index 8d84ddaf08..00c6d5513e 100644
--- a/libraries/libtifiles2/libtifiles2.SlackBuild
+++ b/libraries/libtifiles2/libtifiles2.SlackBuild
@@ -20,11 +20,13 @@
# see fit. Or as I see fit. Or as I fit. Although
# that is unlikely, as I am rather tall.
+# 20220424 bkw: Modified by SlackBuilds.org, BUILD=3:
+
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=libtifiles2
VERSION=${VERSION:-1.1.6}
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-3}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -36,9 +38,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
@@ -73,9 +72,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" \
@@ -87,10 +86,10 @@ CXXFLAGS="$SLKCFLAGS" \
make
-DESTDIR=$PKG make install
+DESTDIR=$PKG make install-strip
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL README docs \
+cp -a AUTHORS COPYING ChangeLog 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 {} \;