2021-12-08 23:48:19 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-07-12 15:54:12 +00:00
|
|
|
SCRIPT_REPO="https://gitlab.freedesktop.org/xorg/lib/libxrender.git"
|
2022-11-06 13:06:20 +00:00
|
|
|
SCRIPT_COMMIT="e5e23272394c90731debd7e18dd167e8c25b5c15"
|
2021-12-08 23:48:19 +00:00
|
|
|
|
|
|
|
ffbuild_enabled() {
|
|
|
|
[[ $TARGET != linux* ]] && return -1
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_dockerbuild() {
|
2022-07-12 15:54:12 +00:00
|
|
|
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" libxrender
|
2021-12-08 23:48:19 +00:00
|
|
|
cd libxrender
|
|
|
|
|
|
|
|
autoreconf -i
|
|
|
|
|
|
|
|
local myconf=(
|
|
|
|
--prefix="$FFBUILD_PREFIX"
|
2021-12-20 16:32:39 +00:00
|
|
|
--enable-shared
|
|
|
|
--disable-static
|
2021-12-08 23:48:19 +00:00
|
|
|
--with-pic
|
|
|
|
)
|
|
|
|
|
2022-07-06 12:55:26 +00:00
|
|
|
if [[ $TARGET == linuxarm64 ]]; then
|
|
|
|
myconf+=(
|
|
|
|
--disable-malloc0returnsnull
|
|
|
|
)
|
|
|
|
fi
|
|
|
|
|
2021-12-08 23:48:19 +00:00
|
|
|
if [[ $TARGET == linux* ]]; then
|
|
|
|
myconf+=(
|
|
|
|
--host="$FFBUILD_TOOLCHAIN"
|
|
|
|
)
|
|
|
|
else
|
|
|
|
echo "Unknown target"
|
|
|
|
return -1
|
|
|
|
fi
|
|
|
|
|
2021-12-20 16:32:39 +00:00
|
|
|
export CFLAGS="$RAW_CFLAGS"
|
|
|
|
export LDFLAFS="$RAW_LDFLAGS"
|
|
|
|
|
2021-12-08 23:48:19 +00:00
|
|
|
./configure "${myconf[@]}"
|
|
|
|
make -j$(nproc)
|
|
|
|
make install
|
2021-12-20 16:32:39 +00:00
|
|
|
|
|
|
|
gen-implib "$FFBUILD_PREFIX"/lib/{libXrender.so.1,libXrender.a}
|
2021-12-21 00:50:55 +00:00
|
|
|
rm "$FFBUILD_PREFIX"/lib/libXrender{.so*,.la}
|
2021-12-08 23:48:19 +00:00
|
|
|
}
|