Serd switched build system
This commit is contained in:
parent
801aa94c0e
commit
c065001c71
1 changed files with 21 additions and 11 deletions
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
SCRIPT_REPO="https://github.com/drobilla/serd.git"
|
||||
SCRIPT_COMMIT="272d7081257dc6d50c06b1b62e8c4baa5bf3b4b2"
|
||||
SCRIPT_COMMIT="2465c3f2779617658cf85d3cbc0ca7b786a4ddca"
|
||||
|
||||
ffbuild_enabled() {
|
||||
return 0
|
||||
|
@ -10,20 +10,30 @@ ffbuild_enabled() {
|
|||
ffbuild_dockerbuild() {
|
||||
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" serd
|
||||
cd serd
|
||||
git submodule update --init --recursive --depth 1
|
||||
|
||||
local mywaf=(
|
||||
mkdir build && cd build
|
||||
|
||||
local myconf=(
|
||||
--prefix="$FFBUILD_PREFIX"
|
||||
--no-utils
|
||||
--static
|
||||
--no-shared
|
||||
--largefile
|
||||
--stack-check
|
||||
--buildtype=release
|
||||
--default-library=static
|
||||
-Ddocs=disabled
|
||||
-Dtools=disabled
|
||||
-Dtests=disabled
|
||||
)
|
||||
|
||||
CC="${FFBUILD_CROSS_PREFIX}gcc" CXX="${FFBUILD_CROSS_PREFIX}g++" ./waf configure "${mywaf[@]}"
|
||||
./waf -j$(nproc)
|
||||
./waf install
|
||||
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
|
||||
|
||||
sed -i 's/Cflags:/Cflags: -DSERD_STATIC/' "$FFBUILD_PREFIX"/lib/pkgconfig/serd-0.pc
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue