build graphite2 for current host

step0、参考

step1、安装依赖

所有时Terminal + Shell + GNU CoreUtils
下载时cURL
解压时tar + gzip
编译时cmakeninjagcc / GCC | Clang / LLVM
运行时
  • glibc ( libc.solibpthread.sold-linux-x86-64.so )
  • freetype ( libfreetype.so )

step2、使用curl命令下载Graphviz源码包 (

curl -LO https://github.com/silnrsi/graphite/releases/download/1.3.14/graphite2-1.3.14.tgz

step3、使用tar解压Graphviz源码包

tar vxf graphite2-1.3.14.tar.gz

step4、进入graphite2-1.3.14目录

cd graphite2-1.3.14

step5、查看graphite2-1.3.14目录的内容

step6、使用cmake命令配置编译参数

cmake [option]... -D<变量>=<值> -S <sourceDIR> -B <buildDIR>

示例:

cmake \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -G Ninja \
    -Wno-dev \
    -S . \
    -B build.d

step7、使用cmake命令进行编译

cmake --build build.d

step8、使用cmake命令进行安装

cmake --install build.d