diff options
author | B. Watson <yalhcru@gmail.com> | 2021-12-23 15:13:07 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-12-27 16:20:27 +0700 |
commit | 40a565e71ba236ff1f16b55b88c81efc4871c226 (patch) | |
tree | d8ef3ed20daa2d71b28f1e02da37585b250ad50a /games/z26/statify.sh | |
parent | ad94da421f07cbbe30eae80b6b1ec7b1361271a1 (diff) |
games/z26: Removed (broken, don't care).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/z26/statify.sh')
-rw-r--r-- | games/z26/statify.sh | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/games/z26/statify.sh b/games/z26/statify.sh deleted file mode 100644 index 91a0abd094b17..0000000000000 --- a/games/z26/statify.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -# z26 is written partly in x86 (32-bit) assembly, so it can't be built -# for 64-bit. So the solution for running it on pure 64-bit systems is -# to use a static binary that doesn't require any 32-bit libs. - -# Run this script on a 32-bit host *with VDSO disabled*, to generate -# the binary used for the 64-bit build. - -# Notes: -# - libgcc_s.so has to be included or else z26 dumps core on exit. -# - libaoss and libasound are needed because z26 doesn't use SDL's -# sound API, it talks directly to OSS via /dev/dsp. -# - libudev is needed for SDL to detect the mouse. -# - If you run "file" on the statified binary, it looks dynamic: -# $ file /usr/games/z26 -# /usr/games/z26: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked, stripped -# ...but ldd says it's "not a dynamic executable". This is normal -# for statified binaries. -# - Do not attempt to strip the statified binary. It will break. - -statifier --set=LD_PRELOAD=/usr/lib/libudev.so:/usr/lib/libaoss.so:/usr/lib/libasound.so:/usr/lib/libgcc_s.so /usr/games/z26 z26.static |