2021-02-19 17:48:56 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-07-12 15:54:12 +00:00
|
|
|
SCRIPT_REPO="https://github.com/lv2/lilv.git"
|
2023-06-21 11:43:28 +00:00
|
|
|
SCRIPT_COMMIT="caad4f5554fd77b61a0907a67bab90bc656d86ad"
|
2021-02-19 17:48:56 +00:00
|
|
|
|
|
|
|
ffbuild_enabled() {
|
2021-03-14 19:06:25 +00:00
|
|
|
return 0
|
2021-02-19 17:48:56 +00:00
|
|
|
}
|
|
|
|
|
2023-06-18 14:44:57 +00:00
|
|
|
ffbuild_dockerbuild() {
|
2023-06-18 19:25:50 +00:00
|
|
|
cd "$FFBUILD_DLDIR/$SELF"
|
2021-02-19 17:48:56 +00:00
|
|
|
|
2022-08-04 18:25:22 +00:00
|
|
|
mkdir build && cd build
|
|
|
|
|
|
|
|
local myconf=(
|
2021-02-19 17:48:56 +00:00
|
|
|
--prefix="$FFBUILD_PREFIX"
|
2022-08-04 18:25:22 +00:00
|
|
|
--buildtype=release
|
|
|
|
--default-library=static
|
|
|
|
-Ddocs=disabled
|
|
|
|
-Dtools=disabled
|
|
|
|
-Dtests=disabled
|
|
|
|
-Dbindings_py=disabled
|
2021-02-19 17:48:56 +00:00
|
|
|
)
|
|
|
|
|
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
|
|
|
|
|
|
|
|
meson "${myconf[@]}" ..
|
|
|
|
ninja -j"$(nproc)"
|
|
|
|
ninja install
|
2021-02-19 17:48:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_configure() {
|
|
|
|
echo --enable-lv2
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_unconfigure() {
|
|
|
|
echo --disable-lv2
|
|
|
|
}
|