From b3394938bafc40a41692242a7dae5bbfc506f8bb Mon Sep 17 00:00:00 2001 From: Kartavya Shukla <87070473+Novfensec@users.noreply.github.com> Date: Tue, 19 Nov 2024 16:07:45 +0530 Subject: [PATCH] Add bitarray recipe (#3084) * add bitarray recipe --- pythonforandroid/recipes/bitarray/__init__.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pythonforandroid/recipes/bitarray/__init__.py diff --git a/pythonforandroid/recipes/bitarray/__init__.py b/pythonforandroid/recipes/bitarray/__init__.py new file mode 100644 index 000000000..7f2d8eaae --- /dev/null +++ b/pythonforandroid/recipes/bitarray/__init__.py @@ -0,0 +1,11 @@ +from pythonforandroid.recipe import CppCompiledComponentsPythonRecipe + + +class BitarrayRecipe(CppCompiledComponentsPythonRecipe): + stl_lib_name = "c++_shared" + version = "3.0.0" + url = "https://github.com/ilanschnell/bitarray/archive/refs/tags/{version}.tar.gz" + depends = ["setuptools"] + + +recipe = BitarrayRecipe()