46 lines
857 B
Bash
Executable file
46 lines
857 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://github.com/lv2/lilv.git"
|
|
SCRIPT_COMMIT="d564baafed0863813a87d872f8663134e74228c8"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" lilv
|
|
cd lilv
|
|
|
|
mkdir build && cd build
|
|
|
|
local myconf=(
|
|
--prefix="$FFBUILD_PREFIX"
|
|
--buildtype=release
|
|
--default-library=static
|
|
-Ddocs=disabled
|
|
-Dtools=disabled
|
|
-Dtests=disabled
|
|
-Dbindings_py=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
|
|
}
|
|
|
|
ffbuild_configure() {
|
|
echo --enable-lv2
|
|
}
|
|
|
|
ffbuild_unconfigure() {
|
|
echo --disable-lv2
|
|
}
|