You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
624 B
31 lines
624 B
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# 接收参数
|
|
TARGET=$1
|
|
CONFIGOPTS=$2
|
|
|
|
|
|
|
|
|
|
echo -e "\n正在编译和安装 FreeType字体引擎……\n"
|
|
|
|
${SHELLROOT}/utils/begin_stage freetype freetype*.tar.bz2
|
|
cd ${SHELLROOT}/tempDIR/`echo freetype*.tar.bz2 | sed 's/\*.*//'`*
|
|
|
|
if ! ./configure --enable-static --disable-shared $CONFIGOPTS --prefix=$TARGET ; then
|
|
echo -e "\n !!! 配置 FreeType字体引擎 失败,无法安装成功\n"
|
|
exit 1
|
|
fi
|
|
|
|
sleep 2
|
|
if make $MAKEOPTS && make install ; then
|
|
echo -e "\n * FreeType字体引擎,编译和安装成功\n"
|
|
else
|
|
echo -e "\n !!! FreeType字体引擎,编译和安装失败\n"
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|