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.
		
		
		
		
		
			
		
			
				
					
					
						
							25 lines
						
					
					
						
							913 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							25 lines
						
					
					
						
							913 B
						
					
					
				| import 'compile/configure' | |
| 
 | |
| name=wine | |
| version=3.13.1 | |
| version_wine=3.13 | |
| 
 | |
| define_option 'wine32=: On x86_64, enable 32bit wine support. Specify the 32bit libdir here' | |
| 
 | |
| dlextract "http://dl.winehq.org/$name/source/3.x/$name-$version_wine.tar.xz" \ | |
|           'ef356c13bd7c14f3de7dd2a2a6b1906a' | |
| dlextract "https://github.com/$name-staging/$name-staging/archive/v$version/$name-staging-$version.tar.gz" \ | |
|           '0bd377d1721f32c829b54ce1f6448c0a' | |
| _ | |
| 
 | |
| cd "$name-$version_wine" | |
| "../$name-staging-$version/patches/patchinstall.sh" DESTDIR="$PWD" --all | |
| 
 | |
| compile_configure -b build -- $([ "$(uname -m)" = 'x86_64' ] && echo --enable-win64) | |
| 
 | |
| wine32="$(option =wine32)" | |
| if [ "$(uname -m)" = 'x86_64' -a "$wine32" ]; then | |
|     PKG_CONFIG_PATH="/$dir_prefix/$wine32/pkgconfig" compile_configure -b build-wine32 -- --with-wine64=../build --libdir="/$dir_prefix/$wine32" | |
| fi | |
| 
 | |
| # vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab:
 | |
| 
 |