RetroPie-Setup/scriptmodules/supplementary/mobilegamepad.sh

46 lines
1.3 KiB
Bash

#!/usr/bin/env bash
# This file is part of The RetroPie Project
#
# The RetroPie Project is the legal property of its developers, whose names are
# too numerous to list here. Please refer to the COPYRIGHT.md file distributed with this source.
#
# See the LICENSE.md file at the top-level directory of this distribution and
# at https://raw.githubusercontent.com/RetroPie/RetroPie-Setup/master/LICENSE.md
#
rp_module_id="mobilegamepad"
rp_module_desc="Mobile Universal Gamepad for RetroPie"
rp_module_licence="GPL3 https://raw.githubusercontent.com/sbidolach/mobile-gamepad/master/LICENSE"
rp_module_repo="git https://github.com/sbidolach/mobile-gamepad.git master"
rp_module_section="exp"
rp_module_flags="noinstclean nobin"
function depends_mobilegamepad() {
depends_virtualgamepad "$@"
}
function remove_mobilegamepad() {
pm2 stop app
pm2 delete app
rm -f /etc/apt/sources.list.d/nodesource.list
}
function sources_mobilegamepad() {
gitPullOrClone "$md_inst"
chown -R "$__user":"$__group" "$md_inst"
}
function install_mobilegamepad() {
npm install -g grunt-cli
npm install pm2 -g --unsafe-perm
cd "$md_inst"
sudo -u "$__user" npm install
}
function configure_mobilegamepad() {
[[ "$md_mode" == "remove" ]] && return
pm2 start app.sh
pm2 startup
pm2 save
}