Skip to content

Instantly share code, notes, and snippets.

@erinzm
Last active August 29, 2015 13:56
Show Gist options
  • Save erinzm/8965675 to your computer and use it in GitHub Desktop.
Save erinzm/8965675 to your computer and use it in GitHub Desktop.
Install Mupen64Plus! Newest Git version!
#!/bin/bash
# Install Mupen64Plus
cd
mkdir mupen64plus
cd mupen64plus
echo "Downloading installation scripts..."
wget https://github.com/mupen64plus/mupen64plus-core/raw/master/tools/m64p_helper_scripts.tar.gz
echo "Done"
echo "Unpacking installation scripts..."
tar zxvf m64p_helper_scripts.tar.gz
rm m64p_helper_scripts.tar.gz
echo "Done"
echo "Downloading M64P sources..."
./m64p_get.sh
echo "Done"
echo "Building M64P..."
./m64p_build.sh
echo "Installing M64P..."
echo "(requires password and sudo access)"
sudo ./m64p_install.sh
echo "Done"
echo "Library Fixes..."
sudo ln -s /usr/local/lib/libmupen64plus.so.2 /usr/lib/
sudo ln -s /usr/local/lib/mupen64plus/ /usr/lib/mupen64plus/
echo "Done!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment