mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:52:45 +00:00 
			
		
		
		
	 52ce7ed842
			
		
	
	
		52ce7ed842
		
	
	
	
	
		
			
			I've rebased the SDL2 port on top of the latest SDL2 main branch. This patch simply points the SDL2 port scripts to the new branch.
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			392 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			392 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/usr/bin/env -S bash ../.port_include.sh
 | |
| port=SDL2
 | |
| version=serenity-git
 | |
| workdir=SDL-main-serenity
 | |
| useconfigure=true
 | |
| files="https://github.com/SerenityOS/SDL/archive/main-serenity.tar.gz SDL2-git.tar.gz"
 | |
| configopts="-DCMAKE_TOOLCHAIN_FILE=$SERENITY_ROOT/Toolchain/CMakeToolchain.txt -DPULSEAUDIO=OFF -DJACK=OFF"
 | |
| 
 | |
| configure() {
 | |
|     run cmake $configopts
 | |
| }
 | |
| 
 | |
| install() {
 | |
|     run make install
 | |
| }
 |