(self, arch, with_flags_in_cc=True)
| 13 | patches = ['patches/compilation_syntax_errors.patch'] |
| 14 | |
| 15 | def get_recipe_env(self, arch, with_flags_in_cc=True): |
| 16 | env = super().get_recipe_env(arch) |
| 17 | |
| 18 | build_dir = Recipe.get_recipe("ffmpeg", self.ctx).get_build_dir( |
| 19 | arch.arch |
| 20 | ) |
| 21 | self.setup_extra_args = ["--ffmpeg-dir={}".format(build_dir)] |
| 22 | |
| 23 | return env |
| 24 | |
| 25 | |
| 26 | recipe = PyAVRecipe() |
no test coverage detected