123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #!/bin/bash
- SCRIPT_REPO="https://gitlab.freedesktop.org/xorg/lib/libxcb.git"
- SCRIPT_COMMIT="daf2c5397607c32c3814f02831b9c1158fd1e52c"
- ffbuild_enabled() {
- [[ $TARGET != linux* ]] && return -1
- return 0
- }
- ffbuild_dockerbuild() {
- autoreconf -i
- local myconf=(
- --prefix="$FFBUILD_PREFIX"
- --enable-shared
- --disable-static
- --with-pic
- --disable-devel-docs
- )
- 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
- for LIBNAME in "$FFBUILD_PREFIX"/lib/libxcb*.so.?; do
- gen-implib "$LIBNAME" "${LIBNAME%%.*}.a"
- rm "${LIBNAME%%.*}"{.so*,.la}
- done
- }
- ffbuild_configure() {
- echo --enable-libxcb
- }
- ffbuild_unconfigure() {
- echo --disable-libxcb
- }
|