|
|
- #!/bin/bash
-
- ##-------------------------------------------------------------
- # Allow interruption of the script at any time (Ctrl + C)
- trap "exit" INT
-
- ##-------------------------------------------------------------
- # Check if we're using bash or sh to run the script. If bash, OK. If sh, ask user to run the script with bash.
-
- BASH_CHECK=$(ps | grep `echo $$` | awk '{ print $4 }')
-
- if [ ! $BASH_CHECK = "bash" ]; then
- echo "
- Please run this script using bash (/usr/bin/bash).
- "
- exit 1
- fi
-
- ##-------------------------------------------------------------
- # Check if we are root or not. If yes, then terminate the script.
-
- if [[ $UID = 0 ]]; then
- echo -e "\nPlease run this script as a regular user. Do not use root or sudo. Some commands used in the script require regular user permissions.\n"
- exit 1
- fi
-
- ##-------------------------------------------------------------
- # Get our current directory
- WORKING_DIR=$(pwd)
-
- # Get our Linux distribution
- DISTRO=$(cat /etc/os-release | sed -n '/PRETTY_NAME/p' | grep -o '".*"' | sed -e 's/"//g' -e s/'([^)]*)'/''/g -e 's/ .*//' -e 's/[ \t]*$//')
-
- ARCH="Arch"
- UBUNTU="Ubuntu"
- DEBIAN="Debian"
- OPENSUSE="openSUSE"
- FEDORA="Fedora"
-
- ##-------------------------------------------------------------
- #Post-installation instructions
-
- bold_in='\e[1m'
- dim_in='\e[2m'
- out='\e[0m'
- PACKAGEMANAGER_INSTALL=1
- PACKAGEMANAGER_REMOVE=1
- PACKAGE_NAME=1
- INSTALL_NAME=1
-
- function endtext_fail() {
- echo -e "\nWhoops! Something went wrong. Please check possible error messages above.\n"
- }
-
- function endtext_ok() {
- OPENRA_GITVERSION=git-$(git ls-remote https://github.com/OpenRA/OpenRA.git | head -1 | sed "s/HEAD//" | sed 's/^\(.\{7\}\).*/\1/')
- RA2_GITVERSION=git-$(git ls-remote https://github.com/OpenRA/ra2.git | head -1 | sed "s/HEAD//" | sed 's/^\(.\{7\}\).*/\1/')
-
- echo -e "$bold_in\n***OpenRA compilation script completed.\nPlease see further instructions below.***$out"
- sleep 2
- echo -e "$bold_in\n***MANUAL INSTALLATION***$out\n\nInstall OpenRA by typing '$PACKAGEMANAGER_INSTALL $HOME/$PACKAGE_NAME' (without quotations) in a terminal window."
- sleep 4
- echo -e "$bold_in\n***TIBERIAN SUN & RED ALERT 2 - HOWTO***$out\n\nTO PLAY TIBERIAN SUN: Launch the game and download the required asset files from the web when the game asks you to do so.\n\nTO PLAY RED ALERT 2: You must install language.mix, multi.mix, ra2.mix and theme.mix into '$HOME/.openra/Content/ra2/' folder. You find these files from original RA2 installation media (CD's):\n\n-theme.mix, multi.mix = RA2 CD Root folder\n-ra2.mix, language.mix = RA2 CD Root/INSTALL/Game1.CAB (inside that archive file)$bold_in\n\n***LAUNCHING OPENRA***$out\n\nTo launch OpenRA, simply type 'openra' (without quotations) in your terminal or use a desktop shortcut file.$bold_in\n\n***UNINSTALLATION***$out\n\nIf you want to remove OpenRA, just type '$PACKAGEMANAGER_REMOVE $INSTALL_NAME' (without quotations)\n\nYou can find package of $INSTALL_NAME in '$HOME' for further usage.$bold_in\n\n***MULTIPLAYER***$out\n\nIt's recommended to build OpenRA using exactly same GIT source files for multiplayer usage to minimize possible version differences/conflicts between players. Please make sure all players have exactly same git versions of their in-game mods (RA, CNC, D2K, TS, RA2). Version numbers are formatted like 'git-e0d7445' etc. and can be found in each mod description in the mod selection menu.\n\nFor this compilation, the version numbers are as follows:\nOpenRA version: $OPENRA_GITVERSION\nRA2 version: $RA2_GITVERSION\n\nHave fun!\n"
- }
-
- ##-------------------------------------------------------------
- # If we're running Arch Linux, then execute this
- if [[ $DISTRO =~ "$ARCH" ]]; then
-
- echo -e "\n$bold_in***Welcome Comrade*** $out\n"
- echo -e "You are about to install OpenRA with Tiberian Sun & Red Alert 2 on Arch Linux.\n"
- read -r -p "Do you want to continue? [y/N] " response
- if [[ $response =~ ^([yY][eE][sS]|[yY])$ ]]; then
-
- echo -e "\nAllright, let's continue. Do you want $bold_in\n\n1.$out manually install OpenRA after its compilation? $dim_in(manual pacman installation)$bold_in\n2.$out automatically install OpenRA after its compilation? $dim_in(pacman -U <compiled_openra_package>)$out\n"
-
- read -r -p "Please type 1 or 2 (Default: 2): " number
- sleep 1
- if [[ $number -eq 1 ]]; then
- echo -e "\nSelected installation method:$bold_in Manual$out"
- else
- echo -e "\nSelected installation method:$bold_in Automatic$out"
- fi
-
- echo -e "$bold_in\n***Starting OpenRA compilation process.***$out\n"
- sleep 2
- if [[ -f $(find $WORKING_DIR/data/linux/arch_linux/ -type f -iname "*.patch") ]]; then
- rm $WORKING_DIR/data/linux/arch_linux/*.patch
- fi
- cp ./data/patches/linux/*.patch ./data/linux/arch_linux/
-
- #Find all old patch occurences in PKGBUILD file and delete them.
- sed -i '/"git:\/\/github.com\/OpenRA\/ra2.git"/,/sha1sums/{//!d}' $WORKING_DIR/data/linux/arch_linux/PKGBUILD
-
- sed -i '//i '${PATCHES}')' $WORKING_DIR/data/linux/arch_linux/PKGBUILD
-
- #Find all patch files and list them in PKGBUILD
- PATCHES=$(find ./data/linux/arch_linux/ -maxdepth 1 -type f -iname "*.patch" | sed -e 's/.*\///' | sed -e ':a;N;$!ba;s/\n/ /g' -e 's/ \+/\\n/g')
- sed -i '/"git:\/\/github.com\/OpenRA\/ra2.git"/a '${PATCHES}')' $WORKING_DIR/data/linux/arch_linux/PKGBUILD
-
- cd ./data/linux/arch_linux
- rm -rf */
- if [[ -f $(find $WORKING_DIR/data/linux/arch_linux/ -type f -iname "*.tar.xz") ]]; then
- rm $WORKING_DIR/data/linux/arch_linux/*.tar.xz
- fi
- updpkgsums
- makepkg -c
-
- if [[ -f $(find $WORKING_DIR/data/linux/arch_linux/ -type f -iname "*.tar.xz") ]]; then
- mv *.tar.xz $HOME
- else
- rm -rf */
- rm ./*.patch
- find . -name 'sed*' -delete
- endtext_fail
- exit 1
- fi
-
- PACKAGEMANAGER_INSTALL='sudo pacman -U'
- PACKAGEMANAGER_REMOVE='sudo pacman -Rs'
- INSTALL_NAME=$(sed -n '/pkgname/{p;q;}' ./PKGBUILD | sed -n 's/^pkgname=//p')
- PACKAGE_NAME=$(find $HOME -maxdepth 1 -type f -iname "$INSTALL_NAME*.tar.xz" | sed -e 's/.*\///')
-
- if [[ ! $number -eq 1 ]]; then
- echo -e "$bold_in\n***Installing OpenRA (root password required).***$out\n"
- $PACKAGEMANAGER_INSTALL --noconfirm $HOME/$PACKAGE_NAME
- echo -e "$bold_in\n***OpenRA installation completed.***$out"
- fi
-
- #Find all patch occurences in PKGBUILD file and delete them.
- sed -i '/"git:\/\/github.com\/OpenRA\/ra2.git"/,/sha1sums/{//!d}' $WORKING_DIR/data/linux/arch_linux/PKGBUILD
-
- rm -rf */
- rm ./*.patch
- find . -name 'sed*' -delete
- cd $WORKING_DIR
-
- if [[ -z $PACKAGE_NAME ]]; then
- endtext_fail
- exit 1
- else
- endtext_ok
- exit 1
- fi
-
- else
- echo -e "\nCancelling OpenRA installation.\n"
- exit 1
- fi
- fi
-
- ##-------------------------------------------------------------
- # If we're running Ubuntu or Linux Mint or Debian, then execute this
- if [[ $DISTRO =~ "$UBUNTU" ]] || [[ $DISTRO =~ "$DEBIAN" ]]; then
-
- if [[ $DISTRO =~ "$DEBIAN" ]]; then
- if [[ $(dpkg-query -W sudo 2>/dev/null | wc -l) -eq 0 ]]; then
- echo -e "\Please install sudo and add your username to sudo group.\nRun the following commands:\nsu root\nadduser <username> sudo\n\nRe-run this script again then.\nExiting now."
- exit 1
- fi
- fi
-
- bash ./data/linux/openra-installscript.sh
-
- PACKAGEMANAGER_INSTALL='sudo dpkg -i'
- PACKAGEMANAGER_REMOVE='sudo apt-get purge --remove'
- INSTALL_NAME=$(sed -n '/PACKAGE_NAME/{p;q;}' ./data/linux/openra-installscript.sh | sed -n 's/^PACKAGE_NAME=//p')
- PACKAGE_NAME=$(find $HOME -maxdepth 1 -type f -iname "$INSTALL_NAME*.deb" | sed -e 's/.*\///')
-
- if [[ -z $PACKAGE_NAME ]]; then
- endtext_fail
- if [[ -d $HOME/openra-master ]]; then
- echo -e "\n"
- read -r -p "Found temporary OpenRA compilation files in $HOME. Remove them now? [y/N] " response2
- if [[ $response2 =~ ^([yY][eE][sS]|[yY])$ ]]; then
- echo -e "\nDeleting.\n"
- rm -Rf $HOME/openra-master
- fi
- fi
- exit 1
- else
- endtext_ok
- exit 1
- fi
-
- exit 1
- fi
-
- ##-------------------------------------------------------------
- # If we're running OpenSUSE or Fedora, then execute this
- if [[ $DISTRO =~ "$FEDORA" ]] || [[ $DISTRO =~ "$OPENSUSE" ]]; then
-
- bash ./data/linux/openra-installscript.sh
-
- if [[ $DISTRO =~ "$OPENSUSE" ]]; then
- PACKAGEMANAGER_INSTALL='sudo zypper install'
- PACKAGEMANAGER_REMOVE='sudo zypper remove'
- elif [[ $DISTRO =~ "$FEDORA" ]]; then
- PACKAGEMANAGER_INSTALL='sudo dnf install'
- PACKAGEMANAGER_REMOVE='sudo dnf remove'
- fi
- INSTALL_NAME=$(sed -n '/PACKAGE_NAME/{p;q;}' ./data/linux/openra-installscript.sh | sed -n 's/^PACKAGE_NAME=//p')
- PACKAGE_NAME=$(find $HOME -maxdepth 1 -type f -iname "$INSTALL_NAME*.rpm" | sed -e 's/.*\///')
-
- if [[ -z $PACKAGE_NAME ]]; then
- endtext_fail
- if [[ -d $HOME/openra-master ]]; then
- echo -e "\n"
- read -r -p "Found temporary OpenRA compilation files in $HOME. Remove them now? [y/N] " response3
- if [[ $response3 =~ ^([yY][eE][sS]|[yY])$ ]]; then
- echo -e "\nDeleting.\n"
- rm -Rf $HOME/openra-master
- fi
- fi
- exit 1
- else
- endtext_ok
- exit 1
- fi
-
- exit 1
- fi
-
- ##-------------------------------------------------------------
- # If we don't have any of the supported distributions
- if [[ ! $DISTRO =~ "$ARCH" ]] || [[ ! $DISTRO =~ "$UBUNTU" ]] || [[ ! $DISTRO =~ "$DEBIAN" ]] || [[ ! $DISTRO =~ "$OPENSUSE" ]] || [[ ! $DISTRO =~ "$FEDORA" ]]; then
- echo "
- Your Linux Distribution is not supported. Please consider making a new OpenRA installation script for it.
- Supported distributions are: Ubuntu, Linux Mint, Debian, OpenSUSE, Fedora and Arch Linux.
- "
- exit 1
- fi
|