Updated ViceC64, courtesy of Lubomyr

This commit is contained in:
Sergii Pylypenko
2013-03-04 20:56:15 +02:00
parent 157a63e47f
commit f46c8f3743
15 changed files with 737 additions and 95 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/sh
# Download and patch sources
if [ -e vcmi ]; then
exit 0
else
svn co https://vcmi.svn.sourceforge.net/svnroot/vcmi/trunk vcmi && patch -p0 -d vcmi < vcmi-android.diff || exit 1
fi