FreeType

Links: Homepage
Dependencies: None
Version: 2.5.0.1

FreeType is a freely available software library to render fonts.

Get the Code

Switch to /usr/local/src and download the source package.

cd /usr/local/src
curl --location --output freetype-VERSION.tar.gz http://download.savannah.gnu.org/releases/freetype/freetype-VERSION.tar.gz

Extract the archive and move into the folder.

tar -xzvf freetype-VERSION.tar.gz
cd freetype-VERSION

Compile and Install

Configure, compile and install into /usr/local/freetype-VERSION.

./configure --prefix=/usr/local/freetype-VERSION --without-png
make
make install

Create a symbolic link that points /usr/local/freetype to /usr/local/freetype-VERSION.

ln -s freetype-VERSION /usr/local/freetype