Last active
September 21, 2021 01:02
-
-
Save lubosz/d8bd66d71ff527e9428bcce2ebc354a8 to your computer and use it in GitHub Desktop.
RetroPie installation script of custom EmulationStation branch.
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
#!/usr/bin/env bash | |
rp_module_id="emulationstation-loop" | |
rp_module_desc="EmulationStation with main menu loop patch" | |
rp_module_licence="MIT https://raw.githubusercontent.com/RetroPie/EmulationStation/master/LICENSE.md" | |
rp_module_section="exp" | |
rp_module_flags="frontend" | |
function _update_hook_emulationstation-loop() { | |
_update_hook_emulationstation | |
} | |
function _add_system_emulationstation-loop() { | |
_add_system_emulationstation "$@" | |
} | |
function _del_system_emulationstation-loop() { | |
_del_system_emulationstation "$@" | |
} | |
function _add_rom_emulationstation-loop() { | |
_add_rom_emulationstation "$@" | |
} | |
function depends_emulationstation-loop() { | |
depends_emulationstation | |
} | |
function sources_emulationstation-loop() { | |
sources_emulationstation "https://github.com/lubosz/EmulationStation" "loop-componentlist" | |
} | |
function build_emulationstation-loop() { | |
build_emulationstation | |
} | |
function install_emulationstation-loop() { | |
install_emulationstation | |
md_ret_files+=(resources) | |
} | |
function configure_emulationstation-loop() { | |
rp_callModule "emulationstation" remove | |
configure_emulationstation | |
} | |
function remove_emulationstation-loop() { | |
remove_emulationstation | |
} | |
function gui_emulationstation-loop() { | |
gui_emulationstation | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment