games-fps/eduke32 20260807

This commit is contained in:
2026-09-07 22:08:06 +02:00
parent a65b61f180
commit c0040922e1
8 changed files with 324 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/sh
# Get all installed zip files
zips=$(ls /usr/share/games/eduke32/*.zip)
# Create opts for voidsw
for zip in ${zips[@]}; do
opts+="-g ${zip} "
done
# Switch to /tmp, for writing there the log file and run voidsw with set opts
cd /tmp && voidsw ${opts}