From e04b5b6c9cd84239effcd9537869b7de225d037a Mon Sep 17 00:00:00 2001 From: Ansh Dadwal Date: Thu, 9 Jul 2026 11:07:17 +0530 Subject: [PATCH] recipes: new `pyglm` recipe --- pythonforandroid/recipes/pyglm/__init__.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 pythonforandroid/recipes/pyglm/__init__.py diff --git a/pythonforandroid/recipes/pyglm/__init__.py b/pythonforandroid/recipes/pyglm/__init__.py new file mode 100644 index 000000000..812fb55d6 --- /dev/null +++ b/pythonforandroid/recipes/pyglm/__init__.py @@ -0,0 +1,10 @@ +from pythonforandroid.recipe import PyProjectRecipe + + +class PyGLMRecipe(PyProjectRecipe): + name = "pyglm" + version = "2.8.3" + url = "git+https://github.com/Zuzu-Typ/PyGLM" + + +recipe = PyGLMRecipe()