Run any build tasks for the Recipe. By default, this checks if any build_archname methods exist for the archname of the current architecture, and runs them if so.
(self, arch)
| 596 | return True |
| 597 | |
| 598 | def build_arch(self, arch): |
| 599 | '''Run any build tasks for the Recipe. By default, this checks if |
| 600 | any build_archname methods exist for the archname of the current |
| 601 | architecture, and runs them if so.''' |
| 602 | build = "build_{}".format(arch.arch) |
| 603 | if hasattr(self, build): |
| 604 | getattr(self, build)() |
| 605 | |
| 606 | def install_libraries(self, arch): |
| 607 | '''This method is always called after `build_arch`. In case that we |
no test coverage detected