diff options
author | B. Watson <yalhcru@gmail.com> | 2019-12-01 14:19:34 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-12-15 17:06:24 +0700 |
commit | bad3717093221baae8426dd431f3e28471eb7a3d (patch) | |
tree | a1a4ed1ae3ec07dc410f346dbc36674c2c534024 /games/gzdoom/gzdoom.SlackBuild | |
parent | 715c315af1ada272bdc500b2365ce15067831641 (diff) |
games/gzdoom: Updated for version 4.2.4.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'games/gzdoom/gzdoom.SlackBuild')
-rw-r--r-- | games/gzdoom/gzdoom.SlackBuild | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/games/gzdoom/gzdoom.SlackBuild b/games/gzdoom/gzdoom.SlackBuild index 509485b06d852..808d3fea2371f 100644 --- a/games/gzdoom/gzdoom.SlackBuild +++ b/games/gzdoom/gzdoom.SlackBuild @@ -6,6 +6,7 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20191201 bkw: Updated for 4.2.4. # 20181022 bkw: Updated for 3.6.0. # 20180827 bkw: Updated for 3.5.1. # 20180801 bkw: Updated for 3.5.0. @@ -25,7 +26,7 @@ # supported as "gzdoom-legacy" for those that need them. PRGNAM=gzdoom -VERSION=${VERSION:-3.6.0} +VERSION=${VERSION:-4.2.4} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -68,11 +69,8 @@ tar xvf $CWD/$PRGNAM-g$VERSION.tar.gz || \ tar xvf $CWD/$VERSION.tar.gz cd $PRGNAM-g$VERSION || 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 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 {} \+ # gzdoom in windowed mode wants to display its git tag and hash as part # of the window title. For releases this shows up as "<unknown version> 0", |