FFmpeg-Builds/scripts.d/45-x11/60-libxcursor.sh

43 lines
896 B
Bash
Raw Normal View History

#!/bin/bash
2022-07-12 15:54:12 +00:00
SCRIPT_REPO="https://gitlab.freedesktop.org/xorg/lib/libxcursor.git"
2023-03-19 11:26:11 +00:00
SCRIPT_COMMIT="81dc4a481b64499ab7c355ee43c91e4fe0767545"
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" libxcursor
cd libxcursor
autoreconf -i
local myconf=(
--prefix="$FFBUILD_PREFIX"
--enable-shared
--disable-static
--with-pic
)
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/{libXcursor.so.1,libXcursor.a}
rm "$FFBUILD_PREFIX"/lib/libXcursor{.so*,.la}
}