mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-09 19:32:11 +00:00
28 lines
774 B
Bash
Executable File
28 lines
774 B
Bash
Executable File
#!/bin/sh
|
|
|
|
LOCAL_PATH=`dirname $0`
|
|
LOCAL_PATH=`cd $LOCAL_PATH && pwd`
|
|
|
|
if [ \! -d ../../../androidsdl ] ; then
|
|
cd ../../..
|
|
git clone git://github.com/pelya/commandergenius androidsdl
|
|
cd androidsdl
|
|
git submodule update --init project/jni/iconv/src
|
|
git checkout d378ee692f2e380a0ab0635c1df2eb6941b5bf58
|
|
cd ../scummvm/dists/androidsdl
|
|
fi
|
|
|
|
if [ \! -d scummvm/scummvm ] ; then
|
|
ln -s ../../../../scummvm scummvm
|
|
fi
|
|
|
|
if [ \! -d ../../../androidsdl/project/jni/application/scummvm ] ; then
|
|
ln -s ../../../../scummvm/dists/androidsdl/scummvm ../../../androidsdl/project/jni/application
|
|
fi
|
|
|
|
cd ../../../androidsdl
|
|
./build.sh scummvm
|
|
|
|
mv project/app/build/outputs/apk/app-release.apk ../scummvm/dists/androidsdl/scummvm-debug.apk
|
|
cd ../scummvm/dists/androidsdl
|