61debb00e5
Otherwise the entire build cache effectively invalidates the moment one script changes..
51 lines
1 KiB
Bash
Executable file
51 lines
1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://gitlab.freedesktop.org/xorg/lib/libxext.git"
|
|
SCRIPT_COMMIT="de2ebd62c1eb8fe16c11aceac4a6981bda124cf4"
|
|
|
|
ffbuild_enabled() {
|
|
[[ $TARGET != linux* ]] && return -1
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
cd "$FFBUILD_DLDIR/$SELF"
|
|
|
|
autoreconf -i
|
|
|
|
local myconf=(
|
|
--prefix="$FFBUILD_PREFIX"
|
|
--enable-shared
|
|
--disable-static
|
|
--with-pic
|
|
--without-xmlto
|
|
--without-fop
|
|
--without-xsltproc
|
|
--without-lint
|
|
)
|
|
|
|
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 -D_GNU_SOURCE"
|
|
export LDFLAFS="$RAW_LDFLAGS"
|
|
|
|
./configure "${myconf[@]}"
|
|
make -j$(nproc)
|
|
make install
|
|
|
|
gen-implib "$FFBUILD_PREFIX"/lib/{libXext.so.6,libXext.a}
|
|
rm "$FFBUILD_PREFIX"/lib/libXext{.so*,.la}
|
|
}
|