lbry-fdroid/p4a/pythonforandroid/recipes/vispy/__init__.py

23 lines
662 B
Python
Raw Normal View History

2017-08-13 03:24:00 +02:00
from pythonforandroid.toolchain import PythonRecipe
class VispyRecipe(PythonRecipe):
# version = 'v0.4.0'
version = 'master'
url = 'https://github.com/vispy/vispy/archive/{version}.tar.gz'
# version = 'campagnola-scenegraph-update'
# url = 'https://github.com/campagnola/vispy/archive/scenegraph-update.zip'
# version = '???'
# url = 'https://github.com/inclement/vispy/archive/Eric89GXL-arcball.zip'
depends = ['python2', 'numpy', 'pysdl2']
patches = ['disable_freetype.patch',
'disable_font_triage.patch',
'use_es2.patch',
'remove_ati_check.patch']
recipe = VispyRecipe()