Advertisement
Guest User

Untitled

a guest
Aug 10th, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 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-grid"
  13. rp_module_desc="EmulationStation with additional gridview"
  14. rp_module_section="exp"
  15.  
  16. function depends_emulationstation-grid() {
  17. depends_emulationstation
  18. }
  19.  
  20. function sources_emulationstation-grid() {
  21. sources_emulationstation "https://github.com/HerbFargus/EmulationStation" "gridtest"
  22. }
  23.  
  24. function build_emulationstation-grid() {
  25. build_emulationstation
  26. }
  27.  
  28. function install_emulationstation-grid() {
  29. install_emulationstation
  30. }
  31.  
  32. function remove_emulationstation-grid() {
  33. remove_emulationstation
  34. }
  35.  
  36. function configure_emulationstation-grid() {
  37. configure_emulationstation
  38. }
  39.  
  40. function gui_emulationstation-grid() {
  41. gui_emulationstation
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement