FFmpeg-Builds/scripts.d/45-x11/10-xtrans.sh
BtbN 61debb00e5 Switch to a more direct Dockerfile.dl generation
Otherwise the entire build cache effectively invalidates the moment one
script changes..
2023-06-18 21:25:52 +02:00

37 lines
728 B
Bash
Executable file

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