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.
27 lines
501 B
27 lines
501 B
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# 接收参数
|
|
TARGET=$1
|
|
|
|
|
|
|
|
|
|
echo -e "\n正在编译和安装 英特尔降噪引擎(oidn)……\n"
|
|
|
|
${SHELLROOT}/utils/begin_stage Oidn oidn-*.tar.gz
|
|
cd ${SHELLROOT}/tempDIR/`echo oidn-*.tar.gz | sed 's/\*.*//'`*
|
|
|
|
cp -v ${SHELLROOT}/installLib/oidn-install.sh .
|
|
|
|
sleep 2
|
|
if ./oidn-install.sh $TARGET ; then
|
|
echo -e "\n * 英特尔降噪引擎(oidn),编译和安装成功\n"
|
|
else
|
|
echo -e "\n !!! 英特尔降噪引擎(oidn),编译和安装失败\n"
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|