diff options
author | B. Watson <yalhcru@gmail.com> | 2021-08-09 18:11:03 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-10-13 00:51:32 +0700 |
commit | 69ed8e83913e54411278b21a88aabc1d9bac06de (patch) | |
tree | 37346b3fa712cdef42ed739741749247d94c608f /system/vinterm | |
parent | 2b2f6ed58edcf050f5396abb47ba7c09e76216a2 (diff) |
system/vinterm: Reflow README.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/vinterm')
-rw-r--r-- | system/vinterm/README | 20 | ||||
-rw-r--r-- | system/vinterm/vinterm.SlackBuild | 10 |
2 files changed, 12 insertions, 18 deletions
diff --git a/system/vinterm/README b/system/vinterm/README index 8541b3c1f3b0..c8020a332bf0 100644 --- a/system/vinterm/README +++ b/system/vinterm/README @@ -1,18 +1,18 @@ vinterm (terminal emulator that simulates 1980s CRT appearance) -Use a terminal in style, like in the good old days! Vintage Terminal is -a terminal emulator that simulates the looks of a 1980s monitor. +Use a terminal in style, like in the good old days! Vintage Terminal +is a terminal emulator that simulates the looks of a 1980s monitor. Vintage Terminal has the following features: -- Full terminal capabilities implemented; -- Scaling (zoom) with the argument -s; -- Window resize/maximize; -- Full screen (CTRL+F11) and full screen with 80 columns (CTRL+SHIFT+F11); -- UNICODE support (no unicode font yet); -- Terminal rollback; -- Mouse support (new in 0.5.0); -- Has a authentic old look based on a IBM 5151 monitor. +- Full terminal capabilities implemented +- Scaling (zoom) with the argument -s +- Window resize/maximize +- Full screen (CTRL+F11) and fullscreen with 80 columns (CTRL+SHIFT+F11) +- UNICODE support (no unicode font yet) +- Terminal rollback +- Mouse support (new in 0.5.0) +- Has a authentic old look based on a IBM 5151 monitor The package includes a vim color scheme by the vinterm author that's meant to make vim's syntax highlighting look better in vinterm. To use diff --git a/system/vinterm/vinterm.SlackBuild b/system/vinterm/vinterm.SlackBuild index 8d449300d353..4412ed05825d 100644 --- a/system/vinterm/vinterm.SlackBuild +++ b/system/vinterm/vinterm.SlackBuild @@ -27,9 +27,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 +59,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 -e "s,-Os,$SLKCFLAGS," -e "s,usr/lib,usr/lib$LIBDIRSUFFIX," config.mk |