初步实现高级打包器脚本文件的抽离(未测试可用性)

This commit is contained in:
2024-08-03 08:42:53 +08:00
parent 81576681e8
commit 9ae95d6008
65 changed files with 605 additions and 880 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,19 @@
#/bin/bash
cd $(dirname $0)
SHELL_DIR=$(dirname $(realpath $0))
runtime_path=/opt/deepinwine/runtime-i386
echo $runtime_path
if [ -f "$runtime_path/init_runtime.sh" ];then
source "$runtime_path/init_runtime.sh"
init_runtime
init_32bit_config
echo "use deepinwine runtime"
"$WINELDPATH" ./gl-wine32
exit $?
fi
./gl-wine32
exit $?