blob: 8f7f14621f50d8f16586b2476c78ab1822435eb5 (
plain)
1 # Description: Time-stretching and pitch-shifting audio library and utility.
2 # URL: https://www.breakfastquay.com/rubberband/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: fftw libsamplerate openjdk8 ladspa vamp-plugin-sdk
5
6 name=rubberband
7 version=1.9
8 release=1
9 source=(https://github.com/breakfastquay/$name/archive/v$version/$name-v$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 autoreconf -vfi
15
16 ./configure --prefix=/usr
17 make
18
19 export JAVA_HOME=/usr/lib/java/openjdk8
20 make jni
21
22 make DESTDIR=$PKG install
23 }
|