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 | |
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')
-rw-r--r-- | misc/fbcat/README | 14 | ||||
-rw-r--r-- | misc/fbcat/fbcat.SlackBuild | 14 | ||||
-rw-r--r-- | misc/fbcat/fbcat.info | 8 |
3 files changed, 17 insertions, 19 deletions
diff --git a/misc/fbcat/README b/misc/fbcat/README index 926e05e60ef2..6b18bbf38bd6 100644 --- a/misc/fbcat/README +++ b/misc/fbcat/README @@ -1,10 +1,12 @@ fbcat (take screenshots of the framebuffer console) -fbcat takes a screenshot using the framebuffer device and stores it in a -PPM file. Also provided is a fbgrab command, which takes PNG screenshots -and supports several useful options (such as changing consoles). +fbcat takes a screenshot using the framebuffer device and stores it +in a PPM file. Also provided is a fbgrab command, which takes PNG +screenshots and supports several useful options (such as changing +consoles). -The following visuals are supported: TRUECOLOR, DIRECTCOLOR, PSEUDOCOLOR, -STATIC_PSEUDOCOLOR, MONO01, MONO10. +The following visuals are supported: TRUECOLOR, DIRECTCOLOR, +PSEUDOCOLOR, STATIC_PSEUDOCOLOR, MONO01, MONO10. -On the SlackBuild author's system, fbcat runs about 3x as fast as fbdump. +On the SlackBuild author's system, fbcat runs about 3x as fast as +fbdump. diff --git a/misc/fbcat/fbcat.SlackBuild b/misc/fbcat/fbcat.SlackBuild index 35f9efa382fd..ede7238329ce 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 diff --git a/misc/fbcat/fbcat.info b/misc/fbcat/fbcat.info index 5466c852ad6a..5f0761826c5f 100644 --- a/misc/fbcat/fbcat.info +++ b/misc/fbcat/fbcat.info @@ -1,8 +1,8 @@ PRGNAM="fbcat" -VERSION="0.5.1" -HOMEPAGE="http://jwilk.net/software/fbcat" -DOWNLOAD="https://github.com/jwilk/fbcat/releases/download/0.5.1/fbcat-0.5.1.tar.gz" -MD5SUM="944fd3854bfe00971bfcd830f6c94497" +VERSION="0.5.2" +HOMEPAGE="https://jwilk.net/software/fbcat" +DOWNLOAD="https://github.com/jwilk/fbcat/releases/download/0.5.2/fbcat-0.5.2.tar.gz" +MD5SUM="b54912af77a865f550cab9f54f840f54" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |