FFmpeg-Builds/scripts.d/50-lilv/97-sord.sh

41 lines
775 B
Bash
Raw Normal View History

#!/bin/bash
2022-07-12 15:54:12 +00:00
SCRIPT_REPO="https://github.com/drobilla/sord.git"
2023-05-29 12:10:36 +00:00
SCRIPT_COMMIT="46f4bcbe04330645a11d00e56a7754cc1386bc45"
ffbuild_enabled() {
return 0
}
ffbuild_dockerdl() {
2022-07-12 15:54:12 +00:00
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" sord
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR"/sord
2022-08-04 18:25:22 +00:00
mkdir build && cd build
local myconf=(
--prefix="$FFBUILD_PREFIX"
2022-08-04 18:25:22 +00:00
--buildtype=release
--default-library=static
-Ddocs=disabled
-Dtools=disabled
-Dtests=disabled
)
2022-08-04 18:25:22 +00:00
if [[ $TARGET == win* || $TARGET == linux* ]]; then
myconf+=(
--cross-file=/cross.meson
)
else
echo "Unknown target"
return -1
fi
2022-08-04 18:25:22 +00:00
meson "${myconf[@]}" ..
ninja -j"$(nproc)"
ninja install
}