File tree 1 file changed +9
-5
lines changed
1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -17,18 +17,22 @@ You can include other modules (or "recipes") to compile using `-m`::
17
17
./distribute.sh -m "openssl kivy"
18
18
./distribute.sh -m "pil ffmpeg kivy"
19
19
20
+ .. note ::
21
+
22
+ Recipes are instructions for compiling Python modules that require C extensions.
23
+ The list of recipes we currently have is at:
24
+ https://github.com/kivy/python-for-android/tree/master/recipes
25
+
20
26
You can also specify a specific version for each package. Please note that the
21
27
compilation might **break ** if you don't use the default version. Most recipes
22
28
have patch to fixes android issues, and might not apply if you specify a
23
29
version. We also recommend to clean build/ before changing version.::
24
30
25
31
./distribute.sh -m "openssl kivy==master"
26
32
27
- The list of available recipes is available at:
28
- https://github.com/kivy/python-for-android/tree/master/recipes
29
-
30
- From python-for-android 1.1, you can now specify pure-python package into the
31
- -m. It will use virtualenv and pip to install pure-python modules into the
33
+ Python modules that don't need C extrnsions don't need a recipe and can be included this way.
34
+ From python-for-android 1.1 on, you can now specify pure-python package into the
35
+ distribution. It will use virtualenv and pip to install pure-python modules into the
32
36
distribution. Please note that compiler are deactivated, and will break any
33
37
module who try to compile something. If compilation is needed, write a recipe::
34
38
You can’t perform that action at this time.
0 commit comments