#!/bin/sh
# SAUER_DIR should refer to the directory in which Sauerbraten is placed.
#SAUER_DIR=~/sauerbraten
#SAUER_DIR=/usr/local/sauerbraten
SAUER_DIR=.
# SYSTEM_NAME should be set to the name of your operating system.
#SYSTEM_NAME=Linux
SYSTEM_NAME=`uname -s`
# MACHINE_NAME should be set to the name of your processor.
#MACHINE_NAME=i686
MACHINE_NAME=`uname -m`
case ${SYSTEM_NAME} in
Linux)
SYSTEM_NAME=linux_
;;
*)
SYSTEM_NAME=native_
;;
esac
case ${MACHINE_NAME} in
i486|i586|i686)
MACHINE_NAME=
;;
*)
if [ ${SYSTEM_NAME} != native_ ]
then
SYSTEM_NAME=native_
fi
MACHINE_NAME=
;;
esac
if [ -x ${SAUER_DIR}/bin_unix/native_client ]
then
SYSTEM_NAME=native_
MACHINE_NAME=
fi
if [ -x ${SAUER_DIR}/bin_unix/${MACHINE_NAME}${SYSTEM_NAME}client ]
then
cd ${SAUER_DIR}
exec ${SAUER_DIR}/bin_unix/${MACHINE_NAME}${SYSTEM_NAME}client $*
else
echo "Your platform does not have a pre-compiled Sauerbraten client."
echo "Please follow the following steps to build a native client:"
echo "1) Ensure you have the SDL, SDL-image, SDL-mixer, and OpenGL libraries installed."
echo "2) Change directory to src/ and type \"make install\"."
echo "3) If the build succeeds, return to this directory and run this script again."
exit 1
fi
I tried to install the files, the only ones I could find in synaptic had "cl-" in front of them. I don't know if these are OK, but they're all I could find.
When I try to install, the screen goes black for a few seconds, then there are two beeps, then the screen returns to normal and nothing has happened.
I'm brand new to Linux so please go easy on me...
Thanks,
Jim


