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
620 B
31 lines
620 B
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# 接收参数
|
|
TARGET=$1
|
|
CONFIGOPTS=$2
|
|
|
|
|
|
|
|
|
|
echo -e "\n正在编译和安装 tiff图像函数库……\n"
|
|
|
|
${SHELLROOT}/utils/begin_stage tiff tiff*.tar.gz
|
|
cd ${SHELLROOT}/tempDIR/`echo tiff*.tar.gz | sed 's/\*.*//'`*
|
|
|
|
if ! ./configure --enable-static --disable-shared --disable-jbig $CONFIGOPTS --prefix=$TARGET ; then
|
|
echo -e "\n !!! 配置 tiff图像函数库 失败,无法安装成功\n"
|
|
exit 1
|
|
fi
|
|
|
|
sleep 2
|
|
if make $MAKEOPTS && make install ; then
|
|
echo -e "\n * tiff图像函数库,编译和安装成功\n"
|
|
else
|
|
echo -e "\n !!! tiff图像函数库,编译和安装失败\n"
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|