mirror of
https://github.com/LBRYFoundation/lbry-android.git
synced 2025-08-23 17:47:28 +00:00
10 lines
205 B
Python
10 lines
205 B
Python
from pythonforandroid.toolchain import Recipe
|
|
|
|
|
|
class FFPyPlayerCodecsRecipe(Recipe):
|
|
depends = ['libshine', 'libx264']
|
|
|
|
def build_arch(self, arch):
|
|
pass
|
|
|
|
recipe = FFPyPlayerCodecsRecipe()
|