lbry-android-sdk/p4a/pythonforandroidold/recipes/pyogg/__init__.py

15 lines
400 B
Python
Raw Normal View History

2022-12-02 21:15:34 +01:00
from pythonforandroid.recipe import PythonRecipe
from os.path import join
class PyOggRecipe(PythonRecipe):
version = '0.6.4a1'
url = 'https://files.pythonhosted.org/packages/source/p/pyogg/PyOgg-{version}.tar.gz'
depends = ['libogg', 'libvorbis', 'setuptools']
patches = [join('patches', 'fix-find-lib.patch')]
call_hostpython_via_targetpython = False
recipe = PyOggRecipe()