summaryrefslogblamecommitdiff
path: root/.tools/old_manaplus.sh
blob: ed89b541c6d6c912ca8bd6bd3a819b23e2192449 (plain) (tree)
1
2
3
4
5

           


                  













                                                                               
                                                                                    
 
                                    
 
                                         











                                                             
    
#!/bin/bash

spm_branch="$1"
client_branch="$2"

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 "$spm_branch" manaplus "$client_branch" || exit 1

export HOME="$PWD/clientdata/shared"

pushd "manaplus_$client_branch" || exit 1
export SDL_VIDEODRIVER=dummy
./bin/manaplus --version || exit 1
./bin/manaplus --validate -u -d ../clientdata || exit 1

[[ -f "${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

popd