SuperTux: updated

This commit is contained in:
Sergii Pylypenko
2015-12-25 20:50:34 +02:00
parent c1cb538f2e
commit 06fae348e2
9 changed files with 116 additions and 21 deletions

View File

@@ -3,8 +3,9 @@
if [ -e supertux/patched.successfully ]; then
exit 0
else
# Google Code fails to send shallow repository, so we're checking out everything
git clone https://github.com/SuperTux/supertux.git && patch -p1 -d supertux < android.diff && touch supertux/patched.successfully || exit 1
git clone https://github.com/SuperTux/supertux.git || exit 1
git -C supertux submodule update --init || exit 1
patch -p1 -d supertux < android.diff && touch supertux/patched.successfully || exit 1
ln -sf supertux/data/images/engine/icons/supertux-256x256.png icon.png
ln -sf ../supertux/data/images/engine/menu/logo.png AndroidData/logo.png
fi