1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- #!/bin/sh
- # CUBE_DIR should refer to the directory in which AssaultCube is placed.
- #CUBE_DIR=~/assaultcube
- #CUBE_DIR=/usr/local/assaultcube
- CUBE_DIR=./
- # CUBE_OPTIONS starts AssaultCube with any command line options you choose.
- CUBE_OPTIONS=""
- # Comment this out, to disable reading command line options from config/servercmdline.txt
- # If enabled, any options under CUBE_OPTIONS are superseded by options in servercmdline.txt
- CUBE_OPTIONFILE=-Cconfig/servercmdline.txt
- # 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 architecture of your processor.
- #MACHINE_NAME=i686
- MACHINE_NAME=`uname -m`
- case ${SYSTEM_NAME} in
- Linux)
- SYSTEM_NAME=linux_
- ;;
- *)
- SYSTEM_NAME=unknown_
- ;;
- esac
- case ${MACHINE_NAME} in
- i486|i586|i686)
- MACHINE_NAME=
- ;;
- x86_64)
- MACHINE_NAME=64_
- ;;
- *)
- if [ ${SYSTEM_NAME} != native_ ]
- then
- SYSTEM_NAME=native_
- fi
- MACHINE_NAME=
- ;;
- esac
- if [ -x "${CUBE_DIR}/bin_unix/native_server" ]
- then
- SYSTEM_NAME=native_
- MACHINE_NAME=
- fi
- if [ -x "/sbin/ldconfig" ]; then
- if [ -z "$(/sbin/ldconfig -p | grep "libSDL-1.2")" ]; then
- echo "To run AssaultCube, please ensure SDL v1.2 libraries are installed."
- exit 1
- fi
- if [ -z "$(/sbin/ldconfig -p | grep "libz")" ]; then
- echo "To run AssaultCube, please ensure z libraries are installed."
- exit 1
- fi
- if [ -z "$(/sbin/ldconfig -p | grep "libcurl")" ]; then
- echo "To run AssaultCube, please ensure Curl libraries are installed."
- exit 1
- fi
- fi
- if [ -x "${CUBE_DIR}/bin_unix/${SYSTEM_NAME}${MACHINE_NAME}server" ]; then
- cd "${CUBE_DIR}"
- exec "${CUBE_DIR}/bin_unix/${SYSTEM_NAME}${MACHINE_NAME}server" ${CUBE_OPTIONS} ${CUBE_OPTIONFILE} "$@"
- elif [ -e "${CUBE_DIR}/bin_unix/${SYSTEM_NAME}${MACHINE_NAME}server" ]; then
- echo "Insufficient permissons to run AssaultCube."
- echo "Please change (chmod) the AssaultCube server in the bin_unix folder to be readable/executable."
- else
- echo "Your platform does not have a pre-compiled AssaultCube server."
- echo "Please follow the following steps to build a native client:"
- echo "1) Ensure you have the following DEVELOPMENT libraries installed:"
- echo " SDL, zlib, libcurl"
- echo "2) Ensure clang++ and any other required build tools are installed."
- echo "3) Change directory to ./source/src/ and type \"make server_install\"."
- echo "4) If the compile succeeds, return to this directory and re-run this script."
- exit 1
- fi
|