Skip to content

Commit

Permalink
aubio recipe created (#3044)
Browse files Browse the repository at this point in the history
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>
```
  • Loading branch information
jithesh82 committed Aug 25, 2024
1 parent 182bec5 commit 851891d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pythonforandroid/recipes/aubio/__init__.py
Original file line number Diff line number Diff line change
@@ -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 <Accelerate/Accelerate.h>
"""

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

0 comments on commit 851891d

Please sign in to comment.