FFmpeg-Builds/scripts.d/50-rubberband.sh

46 lines
948 B
Bash
Raw Normal View History

#!/bin/bash
2021-10-28 18:47:11 +00:00
RUBBERBAND_REPO="https://github.com/breakfastquay/rubberband.git"
2022-06-09 20:21:18 +00:00
RUBBERBAND_COMMIT="4cff1741664918791474da9a9d41f48cc3119229"
ffbuild_enabled() {
2021-06-20 19:59:48 +00:00
[[ $VARIANT == lgpl* ]] && return -1
return 0
}
ffbuild_dockerbuild() {
2021-10-28 18:47:11 +00:00
git-mini-clone "$RUBBERBAND_REPO" "$RUBBERBAND_COMMIT" rubberband
cd rubberband
2021-04-03 23:09:54 +00:00
mkdir build && cd build
local myconf=(
--prefix="$FFBUILD_PREFIX"
2022-02-27 14:09:08 +00:00
-Ddefault_library=static
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
myconf+=(
2021-04-03 23:09:54 +00:00
--cross-file=/cross.meson
)
else
echo "Unknown target"
return -1
fi
2021-04-03 23:09:54 +00:00
meson "${myconf[@]}" ..
ninja -j$(nproc)
ninja install
# Fix static linking
echo "Requires.private: fftw3 samplerate" >> "$FFBUILD_PREFIX"/lib/pkgconfig/rubberband.pc
}
ffbuild_configure() {
echo --enable-librubberband
}
ffbuild_unconfigure() {
echo --disable-librubberband
}