Last active
August 29, 2015 13:56
-
-
Save erinzm/8965675 to your computer and use it in GitHub Desktop.
Install Mupen64Plus! Newest Git version!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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