diff options
author | 2025-05-09 15:48:16 -0400 | |
---|---|---|
committer | 2025-05-10 12:08:57 +0700 | |
commit | e0c3bfd179ea57ce64778e007ac0d49cfb6cfc96 (patch) | |
tree | c64e02a4eae03895a257e70b426f2bc5e37a21a8 | |
parent | c071109c5c94af2eaf2e2f0b37d7ea956098997d (diff) | |
download | slackbuilds-e0c3bfd179ea57ce64778e007ac0d49cfb6cfc96.tar.gz slackbuilds-e0c3bfd179ea57ce64778e007ac0d49cfb6cfc96.tar.xz |
system/vice: Add missing SDL keymaps.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-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 |