(self, arch, name, content)
| 1422 | return join(self.get_build_dir(arch.arch), "p4a_wrappers") |
| 1423 | |
| 1424 | def write_wrapper(self, arch, name, content): |
| 1425 | wrapper_dir = self.get_wrapper_dir(arch) |
| 1426 | ensure_dir(wrapper_dir) |
| 1427 | wrapper_path = join(wrapper_dir, name) |
| 1428 | with open(wrapper_path, "w") as f: |
| 1429 | f.write(content) |
| 1430 | chmod(wrapper_path, 0o755) |
| 1431 | return wrapper_path |
| 1432 | |
| 1433 | def get_python_wrapper(self, arch): |
| 1434 | """ |
no test coverage detected