summaryrefslogtreecommitdiffstats
path: root/system/statifier/statifier.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'system/statifier/statifier.SlackBuild')
-rw-r--r--system/statifier/statifier.SlackBuild18
1 files changed, 7 insertions, 11 deletions
diff --git a/system/statifier/statifier.SlackBuild b/system/statifier/statifier.SlackBuild
index b4c9c82d02..539e2d8b7b 100644
--- a/system/statifier/statifier.SlackBuild
+++ b/system/statifier/statifier.SlackBuild
@@ -4,10 +4,12 @@
# Written by Niels Horn <email removed>, revision date: 2010/03/13
# Updated by Willy Sudiarto Raharjo <email removed>
-# Updated again and now maintained by B. Watson <yalhcru@gmail.com>
+# Updated again and now maintained by B. Watson <urchlay@slackware.uk>
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
+# 20221228 bkw: BUILD=2, remove useless INSTALL from doc dir.
+
# 20180118 bkw:
# - take over maintenance.
# - update for v1.7.4.
@@ -19,7 +21,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=statifier
VERSION=${VERSION:-1.7.4}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -31,9 +33,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
@@ -62,11 +61,8 @@ rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \+
+find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
+ \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
# We need to patch config.x86_64 because Slackware64 is not multi-lib and we
# only have the 32-bits libraries
@@ -93,7 +89,7 @@ gzip $PKG/usr/man/man1/$PRGNAM.1
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \
- AUTHORS ChangeLog FAQ INSTALL LICENSE NEWS \
+ AUTHORS ChangeLog FAQ LICENSE NEWS \
README RELEASE THANKS TODO VERSION doc \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild