forked from kivy/python-for-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
22 lines (15 loc) · 662 Bytes
/
__init__.py
File metadata and controls
22 lines (15 loc) · 662 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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()