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)
| 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. |