mirror of
https://github.com/liberatedsystems/openCom-Companion.git
synced 2024-11-22 13:30:36 +01:00
23 lines
677 B
Python
23 lines
677 B
Python
|
from pythonforandroid.recipe import Recipe
|
||
|
from pythonforandroid.toolchain import current_directory, shprint
|
||
|
import sh
|
||
|
|
||
|
|
||
|
class OpusRecipe(Recipe):
|
||
|
version = '1.5.2'
|
||
|
url = "https://downloads.xiph.org/releases/opus/opus-{version}.tar.gz"
|
||
|
built_libraries = {'libopus.so': '.libs'}
|
||
|
|
||
|
def build_arch(self, arch):
|
||
|
with current_directory(self.get_build_dir(arch.arch)):
|
||
|
env = self.get_recipe_env(arch)
|
||
|
flags = [
|
||
|
'--host=' + arch.command_prefix,
|
||
|
]
|
||
|
configure = sh.Command('./configure')
|
||
|
shprint(configure, *flags, _env=env)
|
||
|
shprint(sh.make, _env=env)
|
||
|
|
||
|
|
||
|
recipe = OpusRecipe()
|