Skip to content

Commit 851891d

Browse files
authored
aubio recipe created (#3044)
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 <Accelerate/Accelerate.h> ```
1 parent 182bec5 commit 851891d

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
"""
2+
Aubio recipe.
3+
Note that this hasn't been ported to cross compile from macOS yet,
4+
the error on 0.4.9 was: src/aubio_priv.h:95:10:
5+
fatal error: 'Accelerate/Accelerate.h' file not found
6+
#include <Accelerate/Accelerate.h>
7+
"""
8+
9+
from pythonforandroid.recipe import PyProjectRecipe
10+
11+
12+
class AubioRecipe(PyProjectRecipe):
13+
version = "0.4.9"
14+
url = "https://aubio.org/pub/aubio-{version}.tar.bz2"
15+
depends = ["numpy", "setuptools"]
16+
17+
18+
recipe = AubioRecipe()

0 commit comments

Comments
 (0)