Hi all! I wrote a simple Bash script to install the latest development version of Dolphin on Ubuntu. I wrote it as a simple script for myself as I was running 15.10 at the time and couldn't install Dolphin via the Downloads page. It became increasingly annoying for me to keep pasting the commands from the wiki into the Terminal to upgrade to each new Development version to I wrote a script to do it for me. I figured that I should share it here in case anyone else wanted to use it. Maybe someone out there will find it useful. Just paste it into a text editor of your choice and save it as whatever you want. Have a great day!

Code:
#!/bin/bash
ver="0.1"
dev="Eamonn Rea"
sysinfo=$(lsb_release -sd)
echo "Dolphin Linux Installer"
echo "Version" $ver
echo "System Information:" $sysinfo
# Installs any packages that may be needed for Dolphin to run
printf "\nCheck for and install any missing packages? [Y/n] "
read check
if [ "${check,,}" == "y" ]
then
sudo apt-get install cmake pkg-config git g++ libao-dev libasound2-dev libavcodec-dev libavformat-dev libbluetooth-dev libenet-dev libgtk2.0-dev liblzo2-dev libminiupnpc-dev libopenal-dev libpolarssl-dev libpulse-dev libreadline-dev libsfml-dev libsoil-dev libsoundtouch-dev libswscale-dev libusb-1.0-0-dev libwxbase3.0-dev libwxgtk3.0-dev libxext-dev libxrandr-dev portaudio19-dev zlib1g-dev libudev-dev libevdev-dev
sudo apt-get install git
fi
# Assumes name of install is "dolphin-emu", since that's the name of the cloned repository
if [ -d dolphin-emu ]
then
# Updates the currently existing Dolphin installation
cd dolphin-emu
git pull origin
else
git clone https://github.com/dolphin-emu/dolphin.git dolphin-emu
fi
cd dolphin-emu && mkdir Build
cd Build && sudo cmake ..
sudo make && sudo make install
echo "Dolphin installed successfully! Run Dolphin? [Y/n] "
read run
if [ "${run,,}" == "y" ]
then
dolphin-emu
else
echo "Exiting program..."
fi