You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			28 lines
		
	
	
		
			878 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			28 lines
		
	
	
		
			878 B
		
	
	
	
		
			Bash
		
	
#!/bin/bash
 | 
						|
 | 
						|
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
 | 
						|
 | 
						|
function error {
 | 
						|
  echo -e "\\e[91m$1\\e[39m"
 | 
						|
  exit 1
 | 
						|
}
 | 
						|
 | 
						|
# Get dependencies
 | 
						|
"${DIRECTORY}/pkg-install" "build-essential cmake libgl1-mesa-dev libsdl2-dev libvulkan-dev wget unzip" "$(dirname "$0")" || exit 1
 | 
						|
cd ~/
 | 
						|
rm -f ppsspp_1.11.3_armv7l.zip
 | 
						|
wget https://github.com/chunky-milk/ppsspp-rpi/releases/download/v1.11.3/ppsspp_1.11.3_armv7l.zip || error "Failed to download zip!"
 | 
						|
unzip ppsspp_1.11.3_armv7l.zip || error "Failed to unzip PPSSPP!"
 | 
						|
rm ppsspp_1.11.3_armv7l.zip || error "Failed to remove zip!"
 | 
						|
 | 
						|
# Desktop entry
 | 
						|
echo "[Desktop Entry]
 | 
						|
Version=1.0
 | 
						|
Type=Application
 | 
						|
Name=PPSSPP
 | 
						|
Comment=PSP emulator
 | 
						|
Icon=$(dirname "$0")/icon-64.png
 | 
						|
Exec=$HOME/ppsspp/PPSSPPSDL
 | 
						|
Categories=Game;" > ~/.local/share/applications/ppsspp.desktop || error "Failed to create desktop entry!"
 | 
						|
 |