diff options
Diffstat (limited to 'system/vice/vice.SlackBuild')
-rw-r--r-- | system/vice/vice.SlackBuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/system/vice/vice.SlackBuild b/system/vice/vice.SlackBuild index 426e7c9a64..c106ab9041 100644 --- a/system/vice/vice.SlackBuild +++ b/system/vice/vice.SlackBuild @@ -7,6 +7,7 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20250509 bkw: BUILD=2, install the SDL keymaps. # 20250122 bkw: update for v3.9. # 20240213 bkw: update for v3.8. @@ -63,7 +64,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=vice VERSION=${VERSION:-3.9} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -218,6 +219,11 @@ buildsdl() { EXEEXT="$exesuf" \ INSTALL_PROGRAM="install -s -m0755" + # 20250509 bkw: the SDL keymaps weren't getting installed, + # meaning the emulator would start up, but the keyboard + # didn't work. Grr. + make install-data DESTDIR="$PKG" + # get rid of the non-graphical tools (the gtk3 build will # install them again without -$exesuf). rm -f $PKG/usr/bin/[cp]*$exesuf |