FFmpeg-Builds/scripts.d/45-x11/10-xtrans.sh
2022-09-01 15:49:07 +02:00

39 lines
776 B
Bash
Executable file

#!/bin/bash
SCRIPT_REPO="https://gitlab.freedesktop.org/xorg/lib/libxtrans.git"
SCRIPT_COMMIT="c761c6505d49e8381a3eae94f2e5e118cbdf6487"
ffbuild_enabled() {
[[ $TARGET != linux* ]] && return -1
return 0
}
ffbuild_dockerbuild() {
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" libxtrans
cd libxtrans
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
}