diff options
author | B. Watson <yalhcru@gmail.com> | 2020-10-24 18:18:51 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-10-31 11:15:36 +0700 |
commit | b1045b8fd5c896741e96cd172e21727d4f6b13c0 (patch) | |
tree | 80e4ff34e2c63a9246fb5ceb473d9fc5da0ae1b5 /games/vera/vera.SlackBuild | |
parent | a5e0088dba8ce077c61ab6f74817bf838db8a1be (diff) |
games/vera: Updated for version 1.24.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/vera/vera.SlackBuild')
-rw-r--r-- | games/vera/vera.SlackBuild | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/games/vera/vera.SlackBuild b/games/vera/vera.SlackBuild index 65dbe2c416322..d0417f27ee764 100644 --- a/games/vera/vera.SlackBuild +++ b/games/vera/vera.SlackBuild @@ -6,8 +6,10 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20201024 bkw: updated for v1.24 + PRGNAM=vera -VERSION=${VERSION:-1.23} +VERSION=${VERSION:-1.24} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -27,11 +29,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 {} \+ # Fix TL;DR and BP;DR entries. patch -p1 < $CWD/semicolons.diff |