wget https://www.gnuwakes.org/depot/1.1/main/sources/fontconfig-2.13.0.tar.bz2 tar -xf fontconfig-2.13.0.tar.bz2 wget https://www.gnuwakes.org/depot/1.1/main/sources/fontconfig.patch cd fontconfig-2.13.0 patch -p1 < ../fontconfig.patch cd .. SOURCES_DIR=$PWD/fontconfig-2.13.0 INSTALL_DIR=$PWD/fontconfig-2.13.0-install BUILD_DIR=$PWD/fontconfig-2.13.0-build mkdir $INSTALL_DIR $BUILD_DIR cd $BUILD_DIR cd $SOURCES_DIR ./configure --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --disable-docs \ --docdir=/usr/share/doc/fontconfig-2.13.0 && \ make && make DESTDIR=$INSTALL_DIR install && make distclean