Rate This Document
Findability
Accuracy
Completeness
Readability

Installing FreeType

Procedure

  1. Use PuTTY to log in to the server as the root user.
  2. Download the FreeType installation package.
    wget https://sourceforge.net/projects/freetype/files/freetype2/2.10.0/freetype-2.10.0.tar.gz
  3. Decompress the FreeType installation package.
    tar -zxvf freetype-2.10.0.tar.gz
  4. Go to the directory generated after the decompression.
    cd freetype-2.10.0
  5. Perform the configuration.
    ./configure  --prefix=/path/to/FREETYPE
  6. Perform the compilation and installation.
    make -j64
    make install