summaryrefslogtreecommitdiffstats
path: root/libraries/mowitz
diff options
context:
space:
mode:
author B. Watson <yalhcru@gmail.com>2022-04-24 14:51:59 -0400
committer B. Watson <yalhcru@gmail.com>2022-04-24 14:51:59 -0400
commit279391ead3e8b75c649953c89af65fd9253869ae (patch)
tree769878609465c2642445b1b7c887cb12ebc76686 /libraries/mowitz
parent6a229e2614f4fd8a13e69562fb98a648f5c2392e (diff)
downloadslackbuilds-279391ead3e8b75c649953c89af65fd9253869ae.tar.gz
slackbuilds-279391ead3e8b75c649953c89af65fd9253869ae.tar.xz
libraries/mowitz: Fix docs.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'libraries/mowitz')
-rw-r--r--libraries/mowitz/mowitz.SlackBuild22
1 files changed, 13 insertions, 9 deletions
diff --git a/libraries/mowitz/mowitz.SlackBuild b/libraries/mowitz/mowitz.SlackBuild
index 367db092c3..a0858dda24 100644
--- a/libraries/mowitz/mowitz.SlackBuild
+++ b/libraries/mowitz/mowitz.SlackBuild
@@ -4,25 +4,27 @@
# Written by Zbigniew Baniewski, <Zbigniew [dot] Baniewski [at] gmail [dot] com>
+# 20220424 bkw: Modified by SlackBuilds.org, BUILD=3:
+# - don't include /usr/doc/Mowitz dir.
+# - don't install compiled examples to doc dir.
+# - i486 => i586.
+
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=mowitz
VERSION=${VERSION:-0.3.1}
-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
@@ -32,8 +34,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"
@@ -57,9 +59,9 @@ cd Mowitz-$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 \
+ -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 {} \;
+ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
@@ -77,6 +79,8 @@ make install DESTDIR=$PKG
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
+rm -rf examples/.libs # 20220424 bkw: don't install compiled examples.
+rm -rf $PKG/usr/doc/Mowitz # 20220424 bkw: already included in doc, below.
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS COPYING README ChangeLog doc examples $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild