FreeType2 安装方法(官方原文)
Introduction to FreeType2
The FreeType2 package contains a library which allows applications to properly render TrueType fonts.
This package is known to build and work properly using an LFS-7.4 platform.
Package Information
-
Download (HTTP): http://downloads.sourceforge.net/freetype/freetype-2.5.0.1.tar.bz2
-
Download MD5 sum: c72e9010b1d986d556fc0b2b5fcbf31a
-
Download size: 1.5 MB
-
Estimated disk space required: 35 MB (includes installing additional documentation)
-
Estimated build time: 0.2 SBU
Additional Downloads
Additional Documentation
-
Download (HTTP): http://downloads.sourceforge.net/freetype/freetype-doc-2.5.0.tar.bz2
-
Download MD5 sum: 40f3d5cc0b16396b3fb6b98eeaa053b2
-
Download size: 112 KB
FreeType2 Dependencies
Recommended
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/freetype2
Installation of FreeType2
If you downloaded the additional documentation, unpack it into the source tree using the following command:
tar -xf ../freetype-doc-2.5.0.tar.bz2 --strip-components=2 -C docs
Install FreeType2 by running the following commands:
sed -i -e "/AUX.*.gxvalid/s@^# @@" \ -e "/AUX.*.otvalid/s@^# @@" \ modules.cfg && sed -ri -e 's:.*(#.*SUBPIXEL.*) .*:\1:' \ include/freetype/config/ftoption.h && ./configure --prefix=/usr --disable-static && make
This package does not come with a test suite.
Now, as the root
user:
make install && install -v -m755 -d /usr/share/doc/freetype-2.5.0.1 && cp -v -R docs/* /usr/share/doc/freetype-2.5.0.1
Command Explanations
sed -e ...: First command enables GX/AAT and OpenType table validation and second command enables Subpixel Rendering and Subpixel Hinting in order to improve font rendering. Note that Subpixel Rendering may have patent issues. Be sure to read the 'Other patent issues'
part of http://www.freetype.org/patents.html before enabling this option.
--disable-static
: This switch prevents installation of static versions of the libraries.
Contents
Short Descriptions
is used to get FreeType compilation and linking information. | |
contains functions for rendering various font types, such as TrueType and Type1. |
目录 返回
首页