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,11 @@
#!/bin/sh
# Download and patch sources
if [ -e vice -a -e vice-v7a ]; then
exit 0
else
wget -c "http://sourceforge.net/projects/vice-emu/files/releases/vice-2.4.tar.gz" && \
tar xvf vice-2.4.tar.gz && \
mv vice-2.4 vice && \
patch -d vice -p1 < vice-2.4-android.diff && cp -as `pwd`/vice vice-v7a || exit 1
fi