MCPcopy Index your code
hub / github.com/kivy/python-for-android / prepare_build_dir

Method prepare_build_dir

pythonforandroid/recipe.py:631–637  ·  view source on GitHub ↗

Copies the recipe data into a build dir for the given arch. By default, this unpacks a downloaded recipe. You should override it (or use a Recipe subclass with different behaviour) if you want to do something else.

(self, arch)

Source from the content-addressed store, hash-verified

629 self.install_stl_lib(arch)
630
631 def prepare_build_dir(self, arch):
632 '''Copies the recipe data into a build dir for the given arch. By
633 default, this unpacks a downloaded recipe. You should override
634 it (or use a Recipe subclass with different behaviour) if you
635 want to do something else.
636 '''
637 self.unpack(arch)
638
639 def clean_build(self, arch=None):
640 '''Deletes all the build information of the recipe.

Calls 1

unpackMethod · 0.95