43 lines
814 B
Bash
Executable file
43 lines
814 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://github.com/breakfastquay/rubberband.git"
|
|
SCRIPT_COMMIT="1eddafd7a7c8b64e377d64ee5e87ead881a32a48"
|
|
|
|
ffbuild_enabled() {
|
|
[[ $VARIANT == lgpl* ]] && return -1
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
cd "$FFBUILD_DLDIR/$SELF"
|
|
|
|
mkdir build && cd build
|
|
|
|
local myconf=(
|
|
--prefix="$FFBUILD_PREFIX"
|
|
-Ddefault_library=static
|
|
-Dfft=fftw
|
|
-Dresampler=libsamplerate
|
|
)
|
|
|
|
if [[ $TARGET == win* || $TARGET == linux* ]]; then
|
|
myconf+=(
|
|
--cross-file=/cross.meson
|
|
)
|
|
else
|
|
echo "Unknown target"
|
|
return -1
|
|
fi
|
|
|
|
meson "${myconf[@]}" ..
|
|
ninja -j$(nproc)
|
|
ninja install
|
|
}
|
|
|
|
ffbuild_configure() {
|
|
echo --enable-librubberband
|
|
}
|
|
|
|
ffbuild_unconfigure() {
|
|
echo --disable-librubberband
|
|
}
|