# Depends on static-freetype
# Depends on static-libfonten

# Exit on error:
set -e

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

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 libXfont-1.4.6
rm libXfont-1.4.6.tar.bz2

exit 0
