2025-04-07 20:21:54 +02:00

36 lines
697 B
Bash
Executable File

#!/bin/bash
SCRIPT_REPO="https://gitlab.freedesktop.org/xorg/lib/libxtrans.git"
SCRIPT_COMMIT="cf05ba4a10c90da2c63805a5375e983b174e28b0"
ffbuild_enabled() {
[[ $TARGET != linux* ]] && return -1
return 0
}
ffbuild_dockerbuild() {
autoreconf -i
local myconf=(
--prefix="$FFBUILD_PREFIX"
--without-xmlto
--without-fop
--without-xsltproc
)
if [[ $TARGET == linux* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
echo "Unknown target"
return -1
fi
./configure "${myconf[@]}"
make -j$(nproc)
make install
cp -r "$FFBUILD_PREFIX"/share/aclocal/. /usr/share/aclocal
}