add a script to compile kivy (wip), and the whole project
This commit is contained in:
parent
46b062cf16
commit
e9eb8a6f5f
2 changed files with 33 additions and 0 deletions
9
build_all.sh
Executable file
9
build_all.sh
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash
|
||||
|
||||
. environment.sh
|
||||
|
||||
try ./build_python.sh
|
||||
try ./build_sdl.sh
|
||||
try ./build_freetype.sh
|
||||
try ./build_sdlttf.sh
|
||||
try ./build_kivy.sh
|
24
build_kivy.sh
Executable file
24
build_kivy.sh
Executable file
|
@ -0,0 +1,24 @@
|
|||
#!/bin/bash
|
||||
|
||||
. ./environment.sh
|
||||
|
||||
set -x
|
||||
|
||||
if [ ! -d kivy ]; then
|
||||
try git clone https://github.com/tito/kivy
|
||||
try cd kivy
|
||||
try git checkout ios-support
|
||||
try cd ..
|
||||
fi
|
||||
|
||||
if [ "X$1" == "X-f" ]; then
|
||||
try cd kivy
|
||||
try git clean -dxf
|
||||
try git fetch
|
||||
try git checkout ios-support
|
||||
try cd ..
|
||||
fi
|
||||
|
||||
cd kivy
|
||||
make ios
|
||||
|
Loading…
Reference in a new issue