Advertisement
Guest User

Untitled

a guest
Mar 5th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.62 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. # This file is part of The RetroPie Project
  4. #
  5. # The RetroPie Project is the legal property of its developers, whose names are
  6. # too numerous to list here. Please refer to the COPYRIGHT.md file distributed with this source.
  7. #
  8. # See the LICENSE.md file at the top-level directory of this distribution and
  9. # at https://raw.githubusercontent.com/RetroPie/RetroPie-Setup/master/LICENSE.md
  10. #
  11.  
  12. rp_module_id="emulationstation-carousel"
  13. rp_module_desc="EmulationStation - Carousel"
  14. rp_module_section="exp"
  15.  
  16. function _get_input_cfg_emulationstation-carousel() {
  17.     _get_input_cfg_emulationstation
  18. }
  19.  
  20. function _update_hook_emulationstation-carousel() {
  21.     _update_hook_emulationstation
  22. }
  23.  
  24. function depends_emulationstation-carousel() {
  25.     depends_emulationstation
  26. }
  27.  
  28. function sources_emulationstation-carousel() {
  29.     sources_emulationstation "https://github.com/zigurana/EmulationStation" "SystemCaroussel"
  30. }
  31.  
  32. function build_emulationstation-carousel() {
  33.     build_emulationstation
  34. }
  35.  
  36. function install_emulationstation-carousel() {
  37.     install_emulationstation
  38. }
  39.  
  40. function init_input_emulationstation-carousel() {
  41.     init_input_emulationstation
  42. }
  43.  
  44. function copy_inputscripts_emulationstation-carousel() {
  45.     copy_inputscripts_emulationstation
  46. }
  47.  
  48. function install_launch_emulationstation-carousel() {
  49.     install_launch_emulationstation
  50. }
  51.  
  52. function clear_input_emulationstation-carousel() {
  53.     clear_input_emulationstation
  54. }
  55.  
  56. function configure_emulationstation-carousel() {
  57.     configure_emulationstation
  58. }
  59.  
  60. function gui_emulationstation-carousel() {
  61.     gui_emulationstation
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement