Graphite2 is a rendering engine for graphite fonts. These are TrueType fonts with additional tables containing smart rendering information and were originally developed to support complex non-Roman writing systems. They may contain rules for e.g. ligatures, glyph substitution, kerning, justification - this can make them useful even on text written in Roman writing systems such as English. Note that firefox by default provides an internal copy of the graphite engine and cannot use a system version (although it can now be patched to use it), but it too should benefit from the availability of graphite fonts.
This package is known to build and work properly using an LFS-8.1 platform.
Download (HTTP): https://github.com/silnrsi/graphite/releases/download/1.3.10/graphite2-1.3.10.tgz
Download MD5 sum: b39d5ed21195f8b709bcee548c87e2b5
Download size: 3.8 MB
Estimated disk space required: 21 MB (with tests, add 1.5 MB for docs)
Estimated build time: 0.2 SBU (with tests, add 0.1 SBU for docs)
FreeType-2.8, Python-2.7.13, and silgraphite to build the comparerender test and benchmarking tool, and if that is present, HarfBuzz-1.4.8 to add more functionality to it (this is a circular dependency, you would need to first build graphite2 without harfbuzz).
To build the documentation: asciidoc-8.6.9, Doxygen-1.8.13, texlive-20170524 (or install-tl-unx), and dblatex (for PDF docs)
To execute the test suite you will need FontTools (Python 2 module), otherwise, the "cmp" tests fail.
You will need at least one suitable graphite font for the package to be useful.
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/graphite2
Some tests fail if FontTools (Python 2 module) is not installed. These tests can be removed with:
sed -i '/cmptest/d' tests/CMakeLists.txt
Install Graphite2 by running the following commands:
mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=/usr .. && make
If you wish to build the documentation, issue:
make docs
To test the results, issue: make test.
Now, as the root
user:
make install
If you built the documentation, install, as the root
user:
install -v -d -m755 /usr/share/doc/graphite2-1.3.10 && cp -v -f doc/{GTF,manual}.html \ /usr/share/doc/graphite2-1.3.10 && cp -v -f doc/{GTF,manual}.pdf \ /usr/share/doc/graphite2-1.3.10
-DCMAKE_VERBOSE_MAKEFILE=ON
: This
switch turns on build verbose mode.
Last updated on 2017-08-19 15:43:35 -0700