blob: 37b298e2173420c36677f925c09684f7f53cfd94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/sh
NAME="aubio"
DESC="tool designed for the extraction of annotations from audio signals"
MAKEDEPS="ffmpeg4 fftw jack libsamplerate libsndfile python"
PKG_VER=0.4.9
SOURCE="https://aubio.org/pub/aubio-$PKG_VER.tar.bz2"
ADDITIONAL="
unversioned-python.patch
"
prepare () {
apply_patches
}
build() {
python3 waf configure --prefix=/usr
}
package() {
python3 waf install --destdir="$PKG_DEST"
}
|