Browse Source

misc/fbcat: Added (take screenshots of the framebuffer console).

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
pull/47/head
B. Watson 9 years ago
committed by Willy Sudiarto Raharjo
parent
commit
28fc54be93
  1. 10
      misc/fbcat/README
  2. 75
      misc/fbcat/fbcat.SlackBuild
  3. 10
      misc/fbcat/fbcat.info
  4. 19
      misc/fbcat/slack-desc

10
misc/fbcat/README

@ -0,0 +1,10 @@
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).
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.

75
misc/fbcat/fbcat.SlackBuild

@ -0,0 +1,75 @@
#!/bin/sh
# Slackware build script for fbcat
# Written by B. Watson (yalhcru@gmail.com)
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
PRGNAM=fbcat
VERSION=${VERSION:-0.4.4}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
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 {} \;
sed -i "s,-g -O2,$SLKCFLAGS," Makefile
make
make -C doc
# fbgrab is a shell script, don't try to strip it
mkdir -p $PKG/usr/bin $PKG/usr/man/man1
install -s -m0755 $PRGNAM $PKG/usr/bin
install -m0755 fbgrab $PKG/usr/bin
gzip -9c < doc/$PRGNAM.1 > $PKG/usr/man/man1/$PRGNAM.1.gz
gzip -9c < doc/fbgrab.1 > $PKG/usr/man/man1/fbgrab.1.gz
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a COPYING doc/changelog doc/tested.txt $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

10
misc/fbcat/fbcat.info

@ -0,0 +1,10 @@
PRGNAM="fbcat"
VERSION="0.4.4"
HOMEPAGE="http://jwilk.net/software/fbcat"
DOWNLOAD="https://github.com/jwilk/fbcat/releases/download/0.4.4/fbcat-0.4.4.tar.gz"
MD5SUM="8be223b178f53d36a3dfa65fde25a6b0"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
MAINTAINER="B. Watson"
EMAIL="yalhcru@gmail.com"

19
misc/fbcat/slack-desc

@ -0,0 +1,19 @@
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description.
# Line up the first '|' above the ':' following the base package name, and
# the '|' on the right side marks the last column you can put a character in.
# You must make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':' except on otherwise blank lines.
|-----handy-ruler------------------------------------------------------|
fbcat: fbcat (take screenshots of the framebuffer console)
fbcat:
fbcat: fbcat takes a screenshot using the framebuffer device and stores
fbcat: in a PPM file. Also provided is a fbgrab command, which takes PNG
fbcat: screenshots and supports several useful options (such as changing
fbcat: consoles).
fbcat:
fbcat:
fbcat:
fbcat:
fbcat:
Loading…
Cancel
Save