From 704523095f4157dd6418ef62d867f58584af050a Mon Sep 17 00:00:00 2001 From: Ansh Dadwal Date: Sun, 14 Jan 2024 11:25:38 +0530 Subject: [PATCH] recipes: new `materialyoucolor` recipe --- .../recipes/materialyoucolor/__init__.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 pythonforandroid/recipes/materialyoucolor/__init__.py diff --git a/pythonforandroid/recipes/materialyoucolor/__init__.py b/pythonforandroid/recipes/materialyoucolor/__init__.py new file mode 100644 index 0000000000..6ae3ad2caf --- /dev/null +++ b/pythonforandroid/recipes/materialyoucolor/__init__.py @@ -0,0 +1,13 @@ +from pythonforandroid.recipe import CompiledComponentsPythonRecipe + + +class MaterialyoucolorRecipe(CompiledComponentsPythonRecipe): + need_stl_shared = True + stl_lib_name = "c++_shared" + version = "2.0.5" + url = "https://github.com/T-Dynamos/materialyoucolor-pyhton/archive/refs/tags/v{version}.tar.gz" + depends = ["setuptools"] + call_hostpython_via_targetpython = False + + +recipe = MaterialyoucolorRecipe()