#!/bin/bash SCRIPT_REPO="https://gitlab.freedesktop.org/xorg/lib/libxrender.git" SCRIPT_COMMIT="46e12ff9e8e4d3f0313a2f097df93dbfdc14f92f" ffbuild_enabled() { [[ $TARGET != linux* ]] && return -1 return 0 } ffbuild_dockerbuild() { autoreconf -i local myconf=( --prefix="$FFBUILD_PREFIX" --enable-shared --disable-static --with-pic ) if [[ $TARGET == linuxarm64 ]]; then myconf+=( --disable-malloc0returnsnull ) fi if [[ $TARGET == linux* ]]; then myconf+=( --host="$FFBUILD_TOOLCHAIN" ) else echo "Unknown target" return -1 fi export CFLAGS="$RAW_CFLAGS" export LDFLAFS="$RAW_LDFLAGS" ./configure "${myconf[@]}" make -j$(nproc) make install gen-implib "$FFBUILD_PREFIX"/lib/{libXrender.so.1,libXrender.a} rm "$FFBUILD_PREFIX"/lib/libXrender{.so*,.la} }