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.
28 lines
715 B
28 lines
715 B
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# 接收参数
|
|
TARGET=$1
|
|
CONFIGOPTS=$2
|
|
|
|
echo -e "\n正在编译和安装 压缩算法(lzma)……\n"
|
|
|
|
${SHELLROOT}/utils/begin_stage lzma xz*.tar.xz
|
|
cd ${SHELLROOT}/tempDIR/`echo xz*.tar.xz | sed 's/\*.*//'`*
|
|
|
|
if ! ./configure --enable-static --disable-shared --disable-scripts --disable-xz --disable-xzdec --disable-lzmadec --disable-lzmainfo --disable-lzma-links $CONFIGOPTS --prefix=$TARGET ; then
|
|
echo -e "\n !!! 配置 压缩算法(lzma)失败,无法安装成功\n"
|
|
exit 1
|
|
fi
|
|
sleep 2
|
|
|
|
if make $MAKEOPTS && make install ; then
|
|
echo -e "\n * 压缩算法(lzma),编译和安装成功\n"
|
|
else
|
|
echo -e "\n !!! 压缩算法(lzma),编译和安装失败\n"
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|