48 lines
1,020 B
Bash
Executable file
48 lines
1,020 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://gitlab.freedesktop.org/xorg/lib/libxinerama.git"
|
|
SCRIPT_COMMIT="f7c9b2cdd92cfcc1fcf0eb94c7fc5daaed2786f4"
|
|
|
|
ffbuild_enabled() {
|
|
[[ $TARGET != linux* ]] && return -1
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" libxinerama
|
|
cd libxinerama
|
|
|
|
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/{libXinerama.so.1,libXinerama.a}
|
|
rm "$FFBUILD_PREFIX"/lib/libXinerama{.so*,.la}
|
|
}
|