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>
This commit is contained in:
parent
17d6930640
commit
3280833966
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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=""
|
||||
|
|
Loading…
Reference in New Issue