Toolchain for compiling Python / Kivy / other libraries for iOS
Find a file
rogererens 886f344d08 Update tools/build-sdlmixer.sh
Added an Include library to ACLOCAL_FLAGS to search the autoconf
directory when MacPorts was used to install dependencies.
MacPorts installs by default into /opt/local.
2012-11-02 16:14:47 +01:00
src add sqlite3 support by default. closes #23 2012-10-28 02:59:17 +02:00
tools Update tools/build-sdlmixer.sh 2012-11-02 16:14:47 +01:00
.gitignore add missing SDL/gles* files 2012-07-07 22:35:16 +02:00
README.rst Update master 2012-07-18 20:52:11 +03: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 (if you have pip, use it!)::

    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.