Add doom 3 app

pull/160/head
Botspot 4 years ago
parent 20b687d554
commit 54fe629968

@ -0,0 +1,7 @@
Script Created By RPI Coder
Added To Pi apps by Botspot
Testers:
Lukefrenner
Botspot
Nikolay Dubnov

@ -0,0 +1 @@
Doom 3 is a 2004 horror first-person shooter video game developed by id Software and published by Activision. In this game a massive demonic invasion has overwhelmed the Union Aerospace Corporation's (UAC) Mars Research Facility, leaving only chaos and horror in its wake. As one of only a few survivors, you must fight your way to hell and back against a horde of evil monsters.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

@ -0,0 +1,16 @@
#!/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" "libfontconfig-dev qt5-default automake mercurial libtool libfreeimage-dev \
libopenal-dev libpango1.0-dev libsndfile-dev libudev-dev libtiff5-dev libwebp-dev libasound2-dev \
libaudio-dev libxrandr-dev libxcursor-dev libxi-dev libxinerama-dev libxss-dev libesd0-dev \
freeglut3-dev libmodplug-dev libsmpeg-dev libjpeg-dev libogg-dev libvorbis-dev libvorbisfile3 libcurl4 cmake aria2 lolcat figlet" "$(dirname "$0")" || exit 1
wget -qO- https://raw.githubusercontent.com/techcoder20/RPIDoom3Installer/main/install.sh | bash || error "install.sh script failed!"

@ -0,0 +1,33 @@
#!/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
}
#Removing Github Repo if already cloned from github
sudo rm -r ~/RPIDoom3Installer
#Cloning Github Repo
git clone https://github.com/techcoder20/RPIDoom3Installer.git ~/RPIDoom3Installer || error 'Failed to clone example.com repository!'
# Get dependencies
"${DIRECTORY}/pkg-install" "libfontconfig-dev qt5-default automake mercurial libtool libfreeimage-dev \
libopenal-dev libpango1.0-dev libsndfile-dev libudev-dev libtiff5-dev libwebp-dev libasound2-dev \
libaudio-dev libxrandr-dev libxcursor-dev libxi-dev libxinerama-dev libxss-dev libesd0-dev \
freeglut3-dev libmodplug-dev libsmpeg-dev libjpeg-dev libogg-dev libvorbis-dev libvorbisfile3 libcurl4 cmake aria2 lolcat figlet" "$(dirname "$0")" || exit 1
#Going inside the installer directory
cd ~/RPIDoom3Installer || error "Failed to change directory "
#Making the install and uninstall script executable
sudo chmod +x install.sh uninstall.sh || error "Failed To make install script and uninstall script executable"
#Running the install script
./install.sh || error "Failed to run install script :("

@ -0,0 +1,16 @@
#!/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
}
#if your app installs any packages, keep this command here so those packages will be removed.
"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1
#Running Uninstall script
cd ~/RPIDoom3Installer || "Failed to Change directory"
./uninstall.sh || error "Failed to execute uninstall script :("

@ -0,0 +1 @@
https://github.com/techcoder20/RPIDoom3Installer.git
Loading…
Cancel
Save