2021-03-14 19:06:25 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-07-12 15:54:12 +00:00
|
|
|
SCRIPT_REPO="https://github.com/drobilla/serd.git"
|
2023-04-18 14:23:16 +00:00
|
|
|
SCRIPT_COMMIT="a6cd7dd91d93015ec118286b868c3fd43133f3ac"
|
2021-03-14 19:06:25 +00:00
|
|
|
|
|
|
|
ffbuild_enabled() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_dockerbuild() {
|
2022-07-12 15:54:12 +00:00
|
|
|
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" serd
|
2021-03-14 19:06:25 +00:00
|
|
|
cd serd
|
|
|
|
|
2022-07-13 15:07:25 +00:00
|
|
|
mkdir build && cd build
|
|
|
|
|
|
|
|
local myconf=(
|
2021-03-14 19:06:25 +00:00
|
|
|
--prefix="$FFBUILD_PREFIX"
|
2022-07-13 15:07:25 +00:00
|
|
|
--buildtype=release
|
|
|
|
--default-library=static
|
|
|
|
-Ddocs=disabled
|
|
|
|
-Dtools=disabled
|
|
|
|
-Dtests=disabled
|
2021-03-14 19:06:25 +00:00
|
|
|
)
|
|
|
|
|
2022-07-13 15:07:25 +00:00
|
|
|
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
|
2021-03-14 19:06:25 +00:00
|
|
|
}
|