29 lines
684 B
Bash
Executable file
29 lines
684 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SERD_REPO="https://github.com/drobilla/serd.git"
|
|
SERD_COMMIT="272d7081257dc6d50c06b1b62e8c4baa5bf3b4b2"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
git-mini-clone "$SERD_REPO" "$SERD_COMMIT" serd
|
|
cd serd
|
|
git submodule update --init --recursive --depth 1
|
|
|
|
local mywaf=(
|
|
--prefix="$FFBUILD_PREFIX"
|
|
--no-utils
|
|
--static
|
|
--no-shared
|
|
--largefile
|
|
--stack-check
|
|
)
|
|
|
|
CC="${FFBUILD_CROSS_PREFIX}gcc" CXX="${FFBUILD_CROSS_PREFIX}g++" ./waf configure "${mywaf[@]}"
|
|
./waf -j$(nproc)
|
|
./waf install
|
|
|
|
sed -i 's/Cflags:/Cflags: -DSERD_STATIC/' "$FFBUILD_PREFIX"/lib/pkgconfig/serd-0.pc
|
|
}
|