mirror of
				https://github.com/SoPat712/YTLitePlus.git
				synced 2025-10-30 20:34:03 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			251 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			251 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| # rootful (iphoneos-arm)
 | |
| export PREFIX=$THEOS/toolchain/Xcode11.xctoolchain/usr/bin/
 | |
| make clean
 | |
| make package FINALPACKAGE=1
 | |
| 
 | |
| # rootless (iphoneos-arm64)
 | |
| export -n PREFIX
 | |
| make clean
 | |
| make package FINALPACKAGE=1 THEOS_PACKAGE_SCHEME=rootless | 
