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

15 lines
392 B
Python
Raw Normal View History

2022-12-02 21:15:34 +01:00
from pythonforandroid.recipe import PythonRecipe
class VispyRecipe(PythonRecipe):
version = '0.4.0'
url = 'https://github.com/vispy/vispy/archive/v{version}.tar.gz'
depends = ['numpy', 'pysdl2']
patches = ['disable_freetype.patch',
'disable_font_triage.patch',
'use_es2.patch',
'remove_ati_check.patch']
recipe = VispyRecipe()