We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e79546 commit dbe6cd3Copy full SHA for dbe6cd3
pythonforandroid/recipes/aubio/__init__.py
@@ -1,11 +1,11 @@
1
-from pythonforandroid.recipe import CythonRecipe
+from pythonforandroid.recipe import PyProjectRecipe
2
from os.path import join
3
4
5
-class AubioRecipe(CythonRecipe):
+class AubioRecipe(PyProjectRecipe):
6
version = "0.4.7"
7
url = "https://aubio.org/pub/aubio-{version}.tar.bz2"
8
- depends = ["numpy"] # Make sure 'samplerate' is included as a dependency
+ depends = ["numpy", "setuptools"] # Make sure 'samplerate' is included as a dependency
9
patches = [join("patches", "build_ext.patch")]
10
11
0 commit comments