e40a84cf3e
Please accept these changes. OBS-URL: https://build.opensuse.org/request/show/312936 OBS-URL: https://build.opensuse.org/package/show/games/twind?expand=0&rev=11
15 lines
260 B
Bash
15 lines
260 B
Bash
#!/bin/sh
|
|
|
|
GAME_LOCAL_DIR=$HOME/.twind
|
|
GAME_DATA_DIR=/usr/lib/twind
|
|
GAME_EXECUTABLE=/usr/lib/twind/twind
|
|
|
|
mkdir -p $GAME_LOCAL_DIR
|
|
cd $GAME_LOCAL_DIR
|
|
|
|
for dir in graphics music sound ; do
|
|
ln -snf $GAME_DATA_DIR/$dir $dir
|
|
done
|
|
|
|
exec $GAME_EXECUTABLE "${@}"
|