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.
		
		
		
		
		
			
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			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
 | 
						|
}
 | 
						|
 | 
						|
sudo apt-get -y install g++ cmake make ninja-build libsdl2-dev libogg-dev libvorbis-dev libopenal-dev libalut-dev libfreetype6-dev || error 'Failed to install dependencies'
 | 
						|
 | 
						|
#download
 | 
						|
rm -rf master.zip astromenace-master/
 | 
						|
wget https://github.com/viewizard/astromenace/archive/refs/heads/master.zip || error 'Failed to download zip!'
 | 
						|
unzip master.zip || error 'Failed to unzip'
 | 
						|
rm -f master.zip
 | 
						|
 | 
						|
#build
 | 
						|
cd astromenace-master/
 | 
						|
cmake . || error 'Failed to run cmake'
 | 
						|
c=nproc
 | 
						|
make || error 'Failed to run make'
 | 
						|
 | 
						|
#menu button
 | 
						|
echo "[Desktop Entry]
 | 
						|
Version=1.1
 | 
						|
Type=Application
 | 
						|
Name=AstroMenace
 | 
						|
Comment=Hardcore 3D space scroll-shooter with spaceship upgrade possibilities.
 | 
						|
Icon=$HOME/astromenace-master/share/astromenace_128.png
 | 
						|
Exec=$HOME/astromenace-master/astromenace
 | 
						|
Categories=Game;
 | 
						|
Terminal=false
 | 
						|
StartupNotify=true" > ~/.local/share/applications/astromenace.desktop
 | 
						|
 |