2021-12-08 23:48:19 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-01-03 22:27:46 +00:00
|
|
|
LIBXCURSOR_REPO="https://gitlab.freedesktop.org/xorg/lib/libxcursor.git"
|
2022-04-23 19:49:20 +00:00
|
|
|
LIBXCURSOR_COMMIT="27adb16027fa99d83818a0ed9f6623cb03f0c574"
|
2021-12-08 23:48:19 +00:00
|
|
|
|
|
|
|
ffbuild_enabled() {
|
|
|
|
[[ $TARGET != linux* ]] && return -1
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_dockerbuild() {
|
|
|
|
git-mini-clone "$LIBXCURSOR_REPO" "$LIBXCURSOR_COMMIT" libxcursor
|
|
|
|
cd libxcursor
|
|
|
|
|
|
|
|
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
|
|
|
|
)
|
|
|
|
|
|
|
|
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[@]}"
|
2021-12-21 00:50:55 +00:00
|
|
|
make -j$(nproc)
|
2021-12-08 23:48:19 +00:00
|
|
|
make install
|
2021-12-20 16:32:39 +00:00
|
|
|
|
|
|
|
gen-implib "$FFBUILD_PREFIX"/lib/{libXcursor.so.1,libXcursor.a}
|
2021-12-21 00:50:55 +00:00
|
|
|
rm "$FFBUILD_PREFIX"/lib/libXcursor{.so*,.la}
|
2021-12-08 23:48:19 +00:00
|
|
|
}
|