diff options
author | B. Watson <yalhcru@gmail.com> | 2021-09-10 17:46:27 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-10-13 00:52:16 +0700 |
commit | 32808339666e2cc001f60229e50ded73cb501742 (patch) | |
tree | 23588e25a6a6f4e248dfb8cf470501f7dd99a692 /misc/fbcat/fbcat.SlackBuild | |
parent | 17d69306401899905fec2aa50759897823a914e1 (diff) |
misc/fbcat: Updated for version 0.5.2.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'misc/fbcat/fbcat.SlackBuild')
-rw-r--r-- | misc/fbcat/fbcat.SlackBuild | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/misc/fbcat/fbcat.SlackBuild b/misc/fbcat/fbcat.SlackBuild index 35f9efa382fd5..ede7238329cec 100644 --- a/misc/fbcat/fbcat.SlackBuild +++ b/misc/fbcat/fbcat.SlackBuild @@ -6,10 +6,12 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20210910 bkw: update for v0.5.2. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=fbcat -VERSION=${VERSION:-0.5.1} +VERSION=${VERSION:-0.5.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -22,9 +24,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 @@ -57,11 +56,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 640 -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 {} \+ sed -i "s,-g -O2,$SLKCFLAGS," Makefile make |