2012-12-19 02:34:32 +01:00
|
|
|
Buildozer
|
|
|
|
=========
|
|
|
|
|
|
|
|
THIS IS A WORK IN PROGRESS, DO NOT USE.
|
|
|
|
|
2012-12-20 01:02:57 +01:00
|
|
|
Buildozer is a tool for creating application packages easily.
|
2012-12-19 02:34:32 +01:00
|
|
|
|
|
|
|
The goal is to have one "buildozer.spec" file in your app directory: it
|
|
|
|
describe your application requirements, titles, etc. Buildozer will use that
|
|
|
|
spec for create package for Android, iOS, Windows, OSX and Linux.
|
|
|
|
|
2012-12-19 17:35:48 +01:00
|
|
|
Usage example
|
|
|
|
-------------
|
2012-12-19 02:34:32 +01:00
|
|
|
|
2012-12-19 17:53:58 +01:00
|
|
|
#. Install buildozer::
|
|
|
|
|
|
|
|
# latest dev
|
|
|
|
git clone git://github.com/kivy/buildozer
|
|
|
|
cd buildozer
|
|
|
|
sudo python2.7 setup.py install
|
|
|
|
|
|
|
|
# via pip (latest stable)
|
|
|
|
sudo pip install buildozer
|
|
|
|
|
|
|
|
# via easy_install
|
|
|
|
sudo easy_install buildozer
|
|
|
|
|
2012-12-19 02:34:32 +01:00
|
|
|
#. Go into your application directory and do::
|
|
|
|
|
2012-12-19 17:53:58 +01:00
|
|
|
buildozer init
|
2012-12-19 17:35:48 +01:00
|
|
|
# edit the buildozer.spec, then
|
2012-12-20 01:04:39 +01:00
|
|
|
buildozer android debug deploy run
|
2012-12-19 17:35:48 +01:00
|
|
|
|
|
|
|
Example of commands::
|
|
|
|
|
|
|
|
# buildozer commands
|
2012-12-19 17:53:58 +01:00
|
|
|
buildozer clean
|
2012-12-19 17:35:48 +01:00
|
|
|
|
|
|
|
# buildozer target command
|
2012-12-19 17:53:58 +01:00
|
|
|
buildozer android update
|
2012-12-20 01:04:39 +01:00
|
|
|
buildozer android deploy
|
2012-12-19 17:53:58 +01:00
|
|
|
buildozer android debug
|
|
|
|
buildozer android release
|
2012-12-19 17:35:48 +01:00
|
|
|
|
2012-12-20 01:04:39 +01:00
|
|
|
# or all in one (compile in debug, deploy on device)
|
|
|
|
buildozer android debug deploy
|
2012-12-19 17:35:48 +01:00
|
|
|
|
|
|
|
# set the default command if nothing set
|
2012-12-20 01:04:39 +01:00
|
|
|
buildozer setdefault android debug deploy run
|
2012-12-19 17:35:48 +01:00
|
|
|
|
|
|
|
|
|
|
|
Usage
|
|
|
|
-----
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
Usage: buildozer [target] [command1] [command2]
|
|
|
|
|
|
|
|
Available targets:
|
2012-12-20 01:01:19 +01:00
|
|
|
android Android target, based on python-for-android project
|
|
|
|
ios iOS target, based on kivy-ios project. (not working yet.)
|
2012-12-19 17:35:48 +01:00
|
|
|
|
|
|
|
Global commands (without target):
|
2012-12-20 01:01:19 +01:00
|
|
|
clean Clean the whole Buildozer environment.
|
|
|
|
help Show the Buildozer help.
|
|
|
|
init Create a initial buildozer.spec in the current directory
|
|
|
|
setdefault Set the default command to do when to arguments are given
|
|
|
|
version Show the Buildozer version
|
2012-12-19 17:35:48 +01:00
|
|
|
|
|
|
|
Target commands:
|
2012-12-20 01:01:19 +01:00
|
|
|
clean Clean the target environment
|
|
|
|
update Update the target dependencies
|
|
|
|
debug Build the application in debug mode
|
|
|
|
release Build the application in release mode
|
|
|
|
deploy Deploy the application on the device
|
|
|
|
run Run the application on the device
|
2012-12-19 17:35:48 +01:00
|
|
|
|
|
|
|
|
2012-12-19 02:34:32 +01:00
|
|
|
|
|
|
|
buildozer.spec
|
|
|
|
--------------
|
|
|
|
|
2012-12-20 00:48:24 +01:00
|
|
|
See `buildozer/default.spec <https://raw.github.com/kivy/buildozer/master/buildozer/default.spec>`_ for an up-to-date spec file.
|
2012-12-19 17:35:48 +01:00
|
|
|
|