# Depends on static-xcb-proto
# Depends on static-libxslt
# Depends on static-pkg-config
# Depends on static-libpthread-stubs
# Depends on static-libxau
# Depends on static-python2 (shared for xcbgen)

# Exit on error:
set -e

wget http://xcb.freedesktop.org/dist/libxcb-1.9.3.tar.bz2
tar xf libxcb-1.9.3.tar.bz2
cd libxcb-1.9.3

PKG_CONFIG=/static/bin/pkg-config \
    CC=/static/bin/musl-gcc \
    LDFLAGS='-s -L/static/lib -static -static-libgcc' \
    ./configure --prefix=/static

make install
cd ..
rm -rf libxcb-1.9.3
rm libxcb-1.9.3.tar.bz2

exit 0
