2019-03-30 21:58:45 +01:00
|
|
|
from pythonforandroid.recipe import PythonRecipe
|
2017-08-13 03:24:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
class VispyRecipe(PythonRecipe):
|
2019-03-30 21:58:45 +01:00
|
|
|
version = '0.4.0'
|
|
|
|
url = 'https://github.com/vispy/vispy/archive/v{version}.tar.gz'
|
|
|
|
depends = ['numpy', 'pysdl2']
|
2017-08-13 03:24:00 +02:00
|
|
|
patches = ['disable_freetype.patch',
|
|
|
|
'disable_font_triage.patch',
|
|
|
|
'use_es2.patch',
|
|
|
|
'remove_ati_check.patch']
|
|
|
|
|
|
|
|
|
|
|
|
recipe = VispyRecipe()
|