- 已编辑
篇幅较长,推荐粘贴至.sh文件后使用
文件可能较为粗糙,但是它是可用的
以下是文件内容,
目前关于ui这部分还没有深入研究。
如果可能的话,我觉得可以用浏览器web的形式
技术力不够啦
本来打算上传文件来着的(小声)
#!/bin/bash
echo "**********Running*********"
termux-setup-storage
sed -i 's@^\(deb.*stable main\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux/apt/termux-main stable main@' $PREFIX/etc/apt/sources.list
apt update && apt upgrade
cd ~
mkdir dice
cd dice
mkdir gocq
cd gocq
wget https://github.com/ProtocolScience/AstralGocq/releases/download/v1.3.1-pre-8/AstralGocq_linux_arm64.tar.gz
if [ $? -ne 0 ]; then
wget https://gh-proxy.com/github.com/ProtocolScience/AstralGocq/releases/download/v1.3.1-pre-8/AstralGocq_linux_arm64.tar.gz-Team/OlivOS
if [ $? -ne 0 ]; then
echo "下载失败,请检查网络状态"
exit 1
fi
fi
tar -xzvf AstralGocq_linux_arm64.tar.gz
cd gocq
rm -f AstralGocq_linux_arm64.tar.gz
if [ $? -ne 0 ]; then
echo "*********gocq安装失败*********"
esle
echo "*********gocq安装完成!*********"
fi
date
cd ~
pkg install clang make cmake binutils libc++ openssl python ldd libuv c-ares git libjpeg-turbo
if [ $? -ne 0 ]; then
echo "****安装依赖时发生错误****"
fi
export GRPC_PYTHON_DISABLE_LIBC_COMPATIBILITY=1 GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=1 GRPC_PYTHON_BUILD_SYSTEM_ZLIB=1 GRPC_PYTHON_BUILD_SYSTEM_CARES=1 CFLAGS+=" -U__ANDROID_API__ -D__ANDROID_API__=30 -include unistd.h" LDFLAGS+=" -llog" LDFLAGS="-L$PREFIX/lib -latomic" CFLAGS="-I$PREFIX/include" CXXFLAGS="-I$PREFIX/include"
# 下载 libre2 和 python-grpcio
apt download libre2 python-grpcio
# 安装本地包
dpkg -i libre2*.deb python-grpcio*.deb
export LDFLAGS="-L$PREFIX/lib -latomic"
export CFLAGS="-I$PREFIX/include"
export GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=1 # 使用系统 OpenSSL
export GRPC_PYTHON_BUILD_SYSTEM_ZLIB=1 # 使用系统 zlib
pip install grpcio-tools --no-binary grpcio-tools -v
if [ $? -ne 0 ]; then
echo "*********grpcio_tools安装失败*********"
esle
echo "*********grpcio_tools安装完成!*********"
fi
date
cd dice
git clone https://github.com/OlivOS-Team/OlivOS
if [ $? -ne 0 ]; then
git clone https://gh-proxy.com/github.com/OlivOS-Team/OlivOS
if [ $? -ne 0 ]; then
echo "下载失败,请检查网络状态"
exit 1
fi
fi
cd OlivOS
pip install grpcio_tools
pip install -r requirements310_pure.txt
chmod +x AstralGocq
echo "使用词指令启动青果:python main.py"
echo "使用指令进入青果目录:cd dice/OlivOS"
echo "使用此指令启动gocq:./AstralGocq"
echo "使用指令进入gocq目录:cd dice/gocq"
cd ~