mirror of
https://github.com/julenvitoria/GnW.git
synced 2025-12-17 13:15:54 +01:00
202 lines
8.8 KiB
Bash
Executable File
202 lines
8.8 KiB
Bash
Executable File
#!/bin/bash
|
|
#By julenvitoria
|
|
|
|
usuario="kde"
|
|
|
|
clear
|
|
#which p7zip > p7zip.txt
|
|
#if grep "/p7zip" ./p7zip.txt ; then
|
|
# echo "Encontrado paquete p7zip, se prosigue..."
|
|
# sleep 1
|
|
#else
|
|
# echo "No encontrado paquete p7zip necesario, instalando..."
|
|
# echo " "
|
|
# sudo apt install -y p7zip
|
|
# echo " "
|
|
# echo "Instalado!!"
|
|
# sleep 1
|
|
#fi
|
|
|
|
sudo apt update
|
|
sudo apt upgrade -y
|
|
sudo apt install -y unzip binutils-arm-none-eabi python3 libhidapi-hidraw0 libftdi1 libftdi1-2 git python3-pip virtualenv software-properties-common pipx
|
|
pipx ensurepath
|
|
sudo pipx ensurepath --global
|
|
sudo apt-add-repository -y ppa:inkscape.dev/stable
|
|
sudo apt update
|
|
|
|
# instalar virtualenv, crear el directorio "py" y si existe borrarlo y volverlo a crear, crear un entorno virtual de python en dicho directorio e instalar los modulos de python requeridos
|
|
echo ""
|
|
echo ""
|
|
echo -e "\e[1;34mSe crea directorio \"py\", se crea el entorno virtual de python, se activa y se instalan los modulos requeridos para los diferentes repos.\e[0m"
|
|
echo ""
|
|
sleep 2
|
|
if [ -d py ]; then
|
|
rm -R py
|
|
fi
|
|
if [ -d pypatch ]; then
|
|
rm -R pypatch
|
|
fi
|
|
mkdir py
|
|
mkdir pypatch
|
|
python3 -m virtualenv py
|
|
python3 -m virtualenv pypatch
|
|
source pypatch/bin/activate
|
|
echo ""
|
|
echo -e "\e[1;34mModulos requeridos para el patch -> ver requirements.txt del repo del patch\e[0m"
|
|
echo ""
|
|
sleep 1
|
|
wget https://raw.githubusercontent.com/BrianPugh/game-and-watch-patch/main/requirements.txt
|
|
pip3 install -r requirements.txt
|
|
rm requirements.txt
|
|
pipx install gnwmanager --force
|
|
echo ""
|
|
deactivate
|
|
source py/bin/activate
|
|
echo -e "\e[1;34mModulos requeridos para retrogo -> ver requirements.txt del repo de retrogo\e[0m"
|
|
echo ""
|
|
sleep 1
|
|
wget https://raw.githubusercontent.com/sylverb/game-and-watch-retro-go/msx_wsv_genesis/requirements.txt
|
|
git clone https://github.com/marian-m12l/zelda3.git
|
|
pip3 install -r requirements.txt
|
|
rm requirements.txt
|
|
sudo rm -r zelda3
|
|
echo ""
|
|
echo -e "\e[1;34mModulos requeridos para LCD-Shrinker -> ver requirements.txt del repo del LCD-Shrinker\e[0m"
|
|
echo ""
|
|
sleep 1
|
|
wget https://raw.githubusercontent.com/bzhxx/LCD-Game-Shrinker/main/requirements.txt
|
|
pip3 install -r requirements.txt
|
|
rm requirements.txt
|
|
|
|
echo -e "\e[1;34mRequerimientos por paquetes deprecados\e[0m"
|
|
pip3 install Pillow==9.5.0
|
|
clear
|
|
|
|
echo -e "\e[1;31mATENCION: el cambio de usuario es MUY IMPORTANTE para el correcto funcionamiento de los scripts.\e[0m"
|
|
echo -e "\e[1;31m¡¡¡Si no se ha realizado correctamente los scripts no funcionaran correctamente!!!\e[0m"
|
|
echo " "
|
|
echo "Por favor, indicame si realizaste el cambio de usuario con la opcion 1 del menu..."
|
|
echo " "
|
|
echo -n "Si realizaste el cambio presiona presiona S para continuar, si no lo hiciste cualquier otra tecla:"
|
|
read -n 1 confirm
|
|
echo
|
|
if [ "$confirm" = "s" ]; then
|
|
confirm="S"
|
|
echo " "
|
|
echo "Se continua con la instalacion..."
|
|
sleep 2
|
|
cd /home/$usuario
|
|
if [ -d /home/$usuario/gameandwatch ]; then
|
|
echo -e "\e[1;33mYa existe el directorio gameandwatch\e[0m"
|
|
sleep 1
|
|
else
|
|
echo -e "\e[1;32mCreando directorio gameandwatch\e[0m"
|
|
sleep 1
|
|
mkdir /home/$usuario/gameandwatch
|
|
fi
|
|
if [ -d /home/$usuario/gameandwatch/gcc-arm-none-eabi ]; then
|
|
echo -e "\e[1;34mBorrando directorio existente y volviendo a descargar...\e[0m"
|
|
sleep 1
|
|
sudo rm -R /home/$usuario/gameandwatch/gcc-arm-none-eabi
|
|
fi
|
|
cd /home/$usuario/gameandwatch
|
|
echo -e "\e[1;36m "
|
|
wget https://developer.arm.com/-/media/Files/downloads/gnu-rm/10-2020q4/gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2
|
|
echo -e "\e[1;35m "
|
|
tar xvf gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2
|
|
mv gcc-arm-none-eabi-10-2020-q4-major gcc-arm-none-eabi
|
|
rm gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2
|
|
clear
|
|
export GCC_PATH=/home/$usuario/gameandwatch/gcc-arm-none-eabi/bin
|
|
if grep -q "export GCC_PATH=/home/$usuario/gameandwatch/gcc-arm-none-eabi/bin" /home/$usuario/.bashrc ; then
|
|
echo -e "\e[1;34mexport GCC_PATH=/home/$usuario/gameandwatch/gcc-arm-none-eabi/bin esta ya en el bashrc\e[0m"
|
|
sleep 2
|
|
else
|
|
echo -e "\e[1;34mexport GCC_PATH=/home/$usuario/gameandwatch/gcc-arm-none-eabi/bin no esta aun en el bashrc, añadiendo...\e[0m"
|
|
sleep 2
|
|
echo export GCC_PATH=/home/$usuario/gameandwatch/gcc-arm-none-eabi/bin >>/home/$usuario/.bashrc
|
|
fi
|
|
echo -e "\e[1;34m \e[0m"
|
|
dialog --backtitle "G&W ------------------------- INFO: 1.3-preparacion-sistema.sh -------------------------- Usuario = $usuario ------------------------" \
|
|
--title "INFO: Usuario=$usuario ---------- Preparacion del sistema" \
|
|
--yesno "¡¡¡ATENCION!!! Se recomienda realizar un reinicio despues de preparar el sistema para asegurar que todo funcione correctamente. Si no lo realizas ahora recuerda hacerlo mas tarde. ¿Deseas reiniciar el sistema?" 0 0
|
|
ans=$?
|
|
if [ $ans -eq 0 ]; then
|
|
clear
|
|
dialog --backtitle "G&W ------------------------- INFO: 1.3-preparacion-sistema.sh -------------------------- Usuario = $usuario ------------------------" \
|
|
--title "INFO: Usuario=$usuario ---------- Preparacion del sistema" \
|
|
--infobox "Reiniciando el sistema..." 0 0 ; sleep 2
|
|
clear
|
|
sudo reboot
|
|
else
|
|
dialog --backtitle "G&W ------------------------- INFO: 1.3-preparacion-sistema.sh -------------------------- Usuario = $usuario ------------------------" \
|
|
--title "INFO: Usuario=$usuario ---------- Preparacion del sistema" \
|
|
--infobox "Recuerda realizar el reinicio mas tarde :)" 0 0 ; sleep 2
|
|
clear
|
|
fi
|
|
else
|
|
if [ "$confirm" = "S" ]; then
|
|
confirm="S"
|
|
echo " "
|
|
echo "Se continua con la instalacion..."
|
|
sleep 2
|
|
cd /home/$usuario
|
|
if [ -d /home/$usuario/gameandwatch ]; then
|
|
echo -e "\e[1;33mYa existe el directorio gameandwatch\e[0m"
|
|
sleep 1
|
|
else
|
|
echo -e "\e[1;32mCreando directorio gameandwatch\e[0m"
|
|
sleep 1
|
|
mkdir /home/$usuario/gameandwatch
|
|
fi
|
|
if [ -d /home/$usuario/gameandwatch/gcc-arm-none-eabi ]; then
|
|
echo -e "\e[1;34mBorrando directorio existente y volviendo a descargar...\e[0m"
|
|
sleep 1
|
|
sudo rm -R /home/$usuario/gameandwatch/gcc-arm-none-eabi
|
|
fi
|
|
cd /home/$usuario/gameandwatch
|
|
echo -e "\e[1;36m "
|
|
wget https://developer.arm.com/-/media/Files/downloads/gnu-rm/10-2020q4/gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2
|
|
echo -e "\e[1;35m "
|
|
tar xvf gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2
|
|
mv gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux gcc-arm-none-eabi
|
|
rm gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2
|
|
clear
|
|
export GCC_PATH=/home/$usuario/gameandwatch/gcc-arm-none-eabi/bin
|
|
if grep -q "export GCC_PATH=/home/$usuario/gameandwatch/gcc-arm-none-eabi/bin" /home/$usuario/.bashrc ; then
|
|
echo -e "\e[1;34mexport GCC_PATH=/home/$usuario/gameandwatch/gcc-arm-none-eabi/bin esta ya en el bashrc\e[0m"
|
|
sleep 2
|
|
else
|
|
echo -e "\e[1;34mexport GCC_PATH=/home/$usuario/gameandwatch/gcc-arm-none-eabi/bin no esta aun en el bashrc, añadiendo...\e[0m"
|
|
sleep 2
|
|
echo export GCC_PATH=/home/$usuario/gameandwatch/gcc-arm-none-eabi/bin >>/home/$usuario/.bashrc
|
|
fi
|
|
echo -e "\e[1;34m \e[0m"
|
|
dialog --backtitle "G&W ------------------------- INFO: 1.3-preparacion-sistema.sh -------------------------- Usuario = $usuario ------------------------" \
|
|
--title "INFO: Usuario=$usuario ---------- Preparacion del sistema" \
|
|
--yesno "¡¡¡ATENCION!!! Se recomienda realizar un reinicio despues de preparar el sistema para asegurar que todo funcione correctamente. Si no lo realizas ahora recuerda hacerlo mas tarde. ¿Deseas reiniciar el sistema?" 0 0
|
|
ans=$?
|
|
if [ $ans -eq 0 ]; then
|
|
clear
|
|
dialog --backtitle "G&W ------------------------- INFO: 1.3-preparacion-sistema.sh -------------------------- Usuario = $usuario ------------------------" \
|
|
--title "INFO: Usuario=$usuario ---------- Preparacion del sistema" \
|
|
--infobox "Reiniciando el sistema..." 0 0 ; sleep 2
|
|
clear
|
|
sudo reboot
|
|
else
|
|
dialog --backtitle "G&W ------------------------- INFO: 1.3-preparacion-sistema.sh -------------------------- Usuario = $usuario ------------------------" \
|
|
--title "INFO: Usuario=$usuario ---------- Preparacion del sistema" \
|
|
--infobox "Recuerda realizar el reinicio mas tarde :)" 0 0 ; sleep 2
|
|
clear
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
if [ "$confirm" != "S" ]; then
|
|
echo " "
|
|
echo "Cancelado..."
|
|
sleep 3
|
|
exit
|
|
fi
|