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()