Toolchain for compiling Python / Kivy / other libraries for iOS
Go to file
Mathieu Virbel e0aea626f7 Merge pull request #50 from beanandbean/master
Remove type error in README.rst
2013-07-13 10:13:49 -07:00
src update to latest SDL master. keyboard API changed, kivy need to be updated as well. 2013-03-03 06:34:46 +01:00
tools use stable kivy branch by default 2013-05-13 10:39:32 +02:00
.gitignore fix builtin module conflict 2013-01-05 12:17:52 +01:00
README.rst Update REANME.rst: change build_all.sh to build-all.sh 2013-05-05 10:19:08 +08:00

Kivy for IOS
============

(This is a work in progress.)

#. Using brew, you can install dependencies::

    brew install autoconf automake libtool pkg-config mercurial
    brew link libtool
    brew link mercurial

#. Install Cython::

    # easy-install method
    sudo easy_install cython

    # pip method if available (sudo might be needed.)
    pip install cython

#. Build the whole toolchain with `tools/build-all.sh`
#. Create an Xcode project for your application with `tools/create-xcode-project.sh test /path/to/app`
#. Open your newly created Xcode project
#. Ensure code signing is setup correctly
#. Click on play

Notes
-----

A build phase is added to the project that processes and moves your
app's files to the Xcode project before every build. If you would like
to handle this process manually, remove the "Run Script" build phase
from your target and use `tools/populate-project.sh /path/to/app`
after every change. You can also change the path to your app by modifying this build phase.