diff --git a/pythonforandroid/recipes/aubio/__init__.py b/pythonforandroid/recipes/aubio/__init__.py new file mode 100644 index 000000000..241a92a23 --- /dev/null +++ b/pythonforandroid/recipes/aubio/__init__.py @@ -0,0 +1,18 @@ +""" +Aubio recipe. +Note that this hasn't been ported to cross compile from macOS yet, +the error on 0.4.9 was: src/aubio_priv.h:95:10: +fatal error: 'Accelerate/Accelerate.h' file not found +#include +""" + +from pythonforandroid.recipe import PyProjectRecipe + + +class AubioRecipe(PyProjectRecipe): + version = "0.4.9" + url = "https://aubio.org/pub/aubio-{version}.tar.bz2" + depends = ["numpy", "setuptools"] + + +recipe = AubioRecipe()