blob: 133ead05e48818e987d6d29bff9a5a5bfe4148d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
NAME="pvoc"
DESC="LADSPLA plugins and a tool for time compression/expansion using phase-vocoding"
MAKEDEPS="make fftw libsndfile ladspa "
PKG_VER=0.1.12
SOURCE="http://quitte.de/dsp/pvoc_${PKG_VER}.tar.gz"
ADDITIONAL="fix-cstdint-missing.patch"
prepare () {
apply_patches
}
build () {
make PREFIX=/usr
}
package () {
make PREFIX=$PKG_DEST/usr install
}
|