diff options
-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 8541b3c1f3b08..c8020a332bf09 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 8d449300d3539..4412ed05825da 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 |