We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
materialyoucolor
PPR
1 parent 858b4fd commit 26e1f69Copy full SHA for 26e1f69
pythonforandroid/recipes/materialyoucolor/__init__.py
@@ -1,11 +1,15 @@
1
-from pythonforandroid.recipe import CppCompiledComponentsPythonRecipe
+from pythonforandroid.recipe import PyProjectRecipe
2
3
4
-class MaterialyoucolorRecipe(CppCompiledComponentsPythonRecipe):
+class MaterialyoucolorRecipe(PyProjectRecipe):
5
stl_lib_name = "c++_shared"
6
- version = "2.0.9"
+ version = "2.0.10"
7
url = "https://github.com/T-Dynamos/materialyoucolor-python/releases/download/v{version}/materialyoucolor-{version}.tar.gz"
8
- depends = ["setuptools"]
+
9
+ def get_recipe_env(self, arch, **kwargs):
10
+ env = super().get_recipe_env(arch, **kwargs)
11
+ env['LDCXXSHARED'] = env['CXX'] + ' -shared'
12
+ return env
13
14
15
recipe = MaterialyoucolorRecipe()
0 commit comments