summaryrefslogblamecommitdiff
path: root/.tools/manaplus.sh
blob: 239696c968b7c73d3fb12de20add115823767f5b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11






                       



                                                                               





















                                                             
#!/bin/bash

source ./.tools/init.sh

clientdata_init

aptget_update
# Evidently libcurl3-gnutls ships libcurl4-gnutls.so.4
aptget_install \
    libcurl3-gnutls \
    libsdl-gfx1.2 libsdl-image1.2 libsdl-mixer1.2 libsdl-net1.2 libsdl-ttf2.0 \
    wget unzip

pwd
ls

./clientdata/.tools/downloadlib.sh manaplus master || exit 1

export HOME=`pwd`/clientdata/shared

cd manaplus_master || exit 1
export SDL_VIDEODRIVER=dummy
./bin/manaplus --validate -u -d ../clientdata || exit 1

ls "${HOME}/.local/share/mana/manaplus.log" || exit 1
grep -A 10 "Assert:" "${HOME}/.local/share/mana/manaplus.log"

if [ "$?" == 0 ]; then
    echo "Asserts found"
    exit 1
fi

cd ..