mirror of
				https://gitee.com/gfdgd-xi/deep-wine-runner
				synced 2025-11-04 15:32:23 +08:00 
			
		
		
		
	
		
			Some checks are pending
		
		
	
	Auto Building Wine Runner(rpm) / Explore-GitHub-Actions (push) Waiting to run
				
			Auto Building Wine Runner(deb) / Explore-GitHub-Actions (push) Waiting to run
				
			Building Wine Runner Off-line Pages(arm64) / Explore-GitHub-Actions (push) Waiting to run
				
			Building Wine Runner Off-line Pages(amd64) / Explore-GitHub-Actions (push) Waiting to run
				
			
		
			
				
	
	
		
			21 lines
		
	
	
		
			633 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			633 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
SHELL_FOLDER=$(cd "$(dirname "$0")";pwd)
 | 
						|
# /opt 目录识别
 | 
						|
option=""
 | 
						|
 | 
						|
if [[ -d /usr/lib32 ]] && [[ -d $SHELL_FOLDER/lib32 ]]; then
 | 
						|
    option="$option --dev-bind $SHELL_FOLDER/lib32 /usr/lib32 "
 | 
						|
fi
 | 
						|
 | 
						|
if [[ -d /usr/lib64 ]] && [[ -d $SHELL_FOLDER/lib64 ]]; then
 | 
						|
    option="$option --dev-bind $SHELL_FOLDER/lib64 /usr/lib64 "
 | 
						|
fi
 | 
						|
 | 
						|
"$SHELL_FOLDER/bwrap" --dev-bind / / \
 | 
						|
    --dev-bind "$SHELL_FOLDER/bin" /usr/bin \
 | 
						|
    --dev-bind "$SHELL_FOLDER/lib" /usr/lib \
 | 
						|
    --dev-bind /usr/lib/locale /usr/lib/locale \
 | 
						|
    --dev-bind "$SHELL_FOLDER/share" /usr/share \
 | 
						|
    $option \
 | 
						|
    $SHELL_FOLDER/runner/deepin-wine-runner $*
 |