# Depends on static-expat
# Depends on static-freetype
# Depends on static-pkg-confi

# Exit on error:
set -e

wget http://www.freedesktop.org/software/fontconfig/release/fontconfig-2.11.0.tar.bz2
tar xf fontconfig-2.11.0.tar.bz2
cd fontconfig-2.11.0

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 fontconfig-2.11.0
rm fontconfig-2.11.0.tar.bz2

exit 0
