11 lines
216 B
Python
11 lines
216 B
Python
from pythonforandroid.toolchain import Recipe
|
|
|
|
|
|
class FFPyPlayerCodecsRecipe(Recipe):
|
|
depends = ['libx264', 'libshine', 'libvpx']
|
|
|
|
def build_arch(self, arch):
|
|
pass
|
|
|
|
|
|
recipe = FFPyPlayerCodecsRecipe()
|