FFmpeg-Builds/scripts.d/50-lilv/96-serd.sh
2023-04-18 16:23:16 +02:00

38 lines
734 B
Bash
Executable file

#!/bin/bash
SCRIPT_REPO="https://github.com/drobilla/serd.git"
SCRIPT_COMMIT="a6cd7dd91d93015ec118286b868c3fd43133f3ac"
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" serd
cd serd
mkdir build && cd build
local myconf=(
--prefix="$FFBUILD_PREFIX"
--buildtype=release
--default-library=static
-Ddocs=disabled
-Dtools=disabled
-Dtests=disabled
)
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
}