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