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
579 B
27 lines
579 B
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# 接收参数
|
|
TARGET=$1
|
|
|
|
|
|
|
|
|
|
echo -e "\n正在编译和安装 二进制数据进行深度压缩代码库(C-blosc)……\n"
|
|
|
|
${SHELLROOT}/utils/begin_stage C-blosc c-blosc-*.tgz
|
|
cd ${SHELLROOT}/tempDIR/`echo c-blosc-*.tgz | sed 's/\*.*//'`*
|
|
|
|
cp -v ${SHELLROOT}/installLib/cblosc-install.sh .
|
|
|
|
sleep 2
|
|
if ./cblosc-install.sh $TARGET; then
|
|
echo -e "\n * 二进制数据进行深度压缩代码库(C-blosc),编译和安装成功\n"
|
|
else
|
|
echo -e "\n !!! 二进制数据进行深度压缩代码库(C-blosc),编译和安装失败\n"
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|