怎样编译安装freetype

2016年11月16日 | 分类: 【技术】

参考:http://www.linuxfromscratch.org/blfs/view/svn/general/freetype2

下载:http://sourceforge.net/projects/freetype/

目前最高版本是freetype-2.6.5 (2016-02-09)。

wget http://sourceforge.net/projects/freetype/files/freetype2/2.6.5/freetype-2.6.5.tar.gz && tar -zxvf freetype-2.6.5.tar.gz && cd freetype-2.6.5 && ./configure LIBPNG_CFLAGS="-I/usr/local/png/include/" LIBPNG_LIBS="-L/usr/local/png/lib -lpng" --prefix=/usr/local/freetype --with-png --enable-shared && make && make install

输出:

...
 Libraries have been installed in:
   /usr/local/freetype/lib
...
/usr/bin/install -c -m 644 /root/freetype-2.6.2/docs/freetype-config.1 \
          /usr/local/freetype/share/man/man1/freetype-config.1

相关路径:

/usr/local/freetype/lib

编译安装完成。