kivy Makefile: don't move, copy

This commit is contained in:
ThomasV 2015-09-09 12:08:09 +02:00
parent 886192aba7
commit 4d60380325
1 changed files with 3 additions and 3 deletions

View File

@ -8,8 +8,8 @@ theming:
apk: apk:
# running pre build setup # running pre build setup
@cp tools/buildozer.spec ../../buildozer.spec @cp tools/buildozer.spec ../../buildozer.spec
# rename electrum to main.py # copy electrum to main.py
@mv ../../electrum ../../main.py @cp ../../electrum ../../main.py
@-if [ ! -d "../../.buildozer" ];then \ @-if [ ! -d "../../.buildozer" ];then \
cd ../..; buildozer android debug;\ cd ../..; buildozer android debug;\
cp -f gui/kivy/tools/blacklist.txt .buildozer/android/platform/python-for-android/src/blacklist.txt;\ cp -f gui/kivy/tools/blacklist.txt .buildozer/android/platform/python-for-android/src/blacklist.txt;\
@ -20,6 +20,6 @@ apk:
clean: clean:
# Cleaning up # Cleaning up
# rename main.py to electrum # rename main.py to electrum
@-mv ../../main.py ../../electrum @-rm ../../main.py
# remove buildozer.spec # remove buildozer.spec
@-rm ../../buildozer.spec @-rm ../../buildozer.spec