# Depends on static-xextproto
# Depends on static-xtrans
# Depends on static-libxcb
# Depends on static-kbproto
# Depends on static-inputprot

# Exit on error:
set -e

wget http://www.x.org/releases/individual/lib/libX11-1.6.2.tar.bz2
tar xf libX11-1.6.2.tar.bz2
cd libX11-1.6.2

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 libX11-1.6.2
rm libX11-1.6.2.tar.bz2

exit 0
