123456789101112131415161718192021222324252627282930313233343536 |
- #!/bin/bash
- SCRIPT_REPO="https://gitlab.freedesktop.org/xorg/lib/libxtrans.git"
- SCRIPT_COMMIT="c8c291390f4befb7d813d7fce6caeb6607561903"
- 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
- }
|