diff options
Diffstat (limited to 'system/xtrs/xtrs.SlackBuild')
-rw-r--r-- | system/xtrs/xtrs.SlackBuild | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/system/xtrs/xtrs.SlackBuild b/system/xtrs/xtrs.SlackBuild index fc6a154f337d3..c0d9fb78d0f76 100644 --- a/system/xtrs/xtrs.SlackBuild +++ b/system/xtrs/xtrs.SlackBuild @@ -7,6 +7,10 @@ # There was no license on the original version. Modified version is # licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20230517 bkw: BUILD=4 +# - include patch from Jens Guenther (sdltrs upstream maintainer) to +# make the window close button work. + # 20230418 bkw: BUILD=3 # - new maintainer. # - use ROMs from trs80-roms package by default. @@ -21,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=xtrs VERSION=${VERSION:-4.9d} -BUILD=${BUILD:-3} +BUILD=${BUILD:-4} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -72,6 +76,10 @@ find . -type f -a -exec chmod 644 {} + -o \ # - use correct app-defaults dir. patch -p1 < $CWD/sbo.diff +# 20230517 bkw: Jens Guenther's "quick and dirty" patch to make the +# windowmanager's close button work. Many thanks! +patch -p1 < $CWD/window_close.diff + # 20230418 bkw: the -laoss here allows xtrs to make sound via ALSA # or PulseAudio (via /etc/asound.conf). make DEBUG="$SLKCFLAGS" EXTRALIBS="-laoss" |