12345678910111213141516171819202122232425262728293031323334353637383940 |
- #!/bin/bash
- SCRIPT_REPO="https://gitlab.freedesktop.org/xorg/lib/libxfixes.git"
- SCRIPT_COMMIT="f50dd4df16163da731ad9f251cc98b9ccd0e7455"
- ffbuild_enabled() {
- [[ $TARGET != linux* ]] && return -1
- return 0
- }
- ffbuild_dockerbuild() {
- autoreconf -i
- local myconf=(
- --prefix="$FFBUILD_PREFIX"
- --enable-shared
- --disable-static
- --with-pic
- )
- if [[ $TARGET == linux* ]]; then
- myconf+=(
- --host="$FFBUILD_TOOLCHAIN"
- )
- else
- echo "Unknown target"
- return -1
- fi
- export CFLAGS="$RAW_CFLAGS"
- export LDFLAFS="$RAW_LDFLAGS"
- ./configure "${myconf[@]}"
- make -j$(nproc)
- make install
- gen-implib "$FFBUILD_PREFIX"/lib/{libXfixes.so.3,libXfixes.a}
- rm "$FFBUILD_PREFIX"/lib/libXfixes{.so*,.la}
- }
|