caiman: Did anyone find a solution to this?
I have a similiar problem with Kubuntu 20.04 and Wasteland 2.0.0.3 (the latest version). If I launch the game from the application menu it appears briefly in the task bar, then disappears and nothing happens. If I run it from the Terminal I get a File Not Found error for the Wasteland executable (I think it's pointing to a Wasteland.sh nested somewhere among the application files), and something related to exc_var?
I've tried re-installing several times.
Alright, I downloaded and installed gog_wasteland_1_the_original_classic_2.0.0.3.sh to my Arch Linux machine using the default directory choice and Wasteland 1 ran without any errors.
Took a look at the start.sh script that gets installed with the GOG Wasteland 1 linux installer. and the start.sh file that you're having issues with simply burrows down to a subdirectory in the Install path called "
game" and to executes the custom program Inxile built that merges graphical updates + embedded journals/voiceover versions of journals to the basic Wasteland 1 game.
============
#!/bin/bash
# GOG.com (www.gog.com)
# Wasteland 1 - The Original Classic
# Initialization
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "${CURRENT_DIR}"
source support/gog_com.shlib
# Game info
GAME_NAME="$(get_gameinfo 1)"
VERSION="$(get_gameinfo 2)"
VERSION_DEV="$(get_gameinfo 3)"
# Actions
run_game() {
echo "Running ${GAME_NAME}"
cd game ./"wasteland" }
default() {
run_game
}
# Options
define_option "-s" "--start" "start ${GAME_NAME} [default]" "run_game" "$@"
# Defaults
standard_options "$@"
===========================