1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/retroarch_ynh.git synced 2024-09-03 20:16:12 +02:00
retroarch_ynh/scripts/install

101 lines
4 KiB
Text
Raw Normal View History

2020-05-08 20:42:27 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2021-06-06 23:28:54 +02:00
source /usr/share/yunohost/helpers
2020-05-08 20:42:27 +02:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2023-08-20 11:23:25 +02:00
ynh_script_progression --message="Installing dependencies..." --weight=13
2020-05-08 20:42:27 +02:00
2021-09-08 10:11:26 +02:00
ynh_install_nodejs --nodejs_version=$nodejs_version
2020-05-08 20:42:27 +02:00
ynh_use_nodejs
ynh_npm install -g coffeescript
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-05-08 15:43:13 +02:00
ynh_script_progression --message="Setting up source files..." --weight=60
2020-05-08 20:42:27 +02:00
2021-02-20 19:31:31 +01:00
# uncompress and patch done manually as 7z format is not supported
2023-05-07 18:10:21 +02:00
ynh_setup_source --dest_dir="$install_dir"
2021-04-25 16:50:33 +02:00
#7z archive not handled by ynh and no way to strip component, have to move it manually
2023-08-20 11:23:25 +02:00
7zr x $install_dir/main -o$install_dir
2023-05-07 18:10:21 +02:00
mv $install_dir/retroarch/* $install_dir/
2023-08-20 11:23:25 +02:00
ynh_secure_remove --file="$install_dir/main"
ynh_secure_remove --file="$install_dir/retroarch"
2021-02-20 19:31:31 +01:00
2023-05-07 18:10:21 +02:00
touch $install_dir/analytics.js #https://github.com/libretro/RetroArch/issues/4539#issuecomment-473345195
2021-02-20 19:31:31 +01:00
#Get the indexer as exe so that folder w/ ROMs can be indexed
2023-05-07 18:10:21 +02:00
chmod +x $install_dir/indexer
2020-05-08 20:42:27 +02:00
2021-05-09 11:19:10 +02:00
#=================================================
#SETTING MULTIMEDIA DIRECTORY
#=================================================
ynh_script_progression --message="Setting up Multimedia directory..." --weight=9
ynh_multimedia_build_main_dir
2023-05-07 18:10:21 +02:00
mkdir -p $install_dir/assets/cores/Game
ynh_multimedia_addfolder --source_dir="$install_dir/assets/cores/Game" --dest_dir="/share/Game"
ynh_add_config --template="../conf/README.GAME" --destination="$install_dir/assets/cores/Game/README"
chmod 666 $install_dir/assets/cores/Game/README
2021-05-09 11:19:10 +02:00
# SETUP CRON FILE FOR INDEXER
#setup indexer bash script
2023-05-07 18:10:21 +02:00
ynh_add_config --template="../conf/indexer.sh" --destination="$install_dir/indexer.sh"
chown www-data: $install_dir/indexer.sh
chmod 744 $install_dir/indexer.sh
2021-09-08 10:11:26 +02:00
2021-05-09 11:19:10 +02:00
#setup cron file
cron_path="/etc/cron.d/$app"
ynh_add_config --template="../conf/retroarch.cron" --destination="$cron_path"
chmod 644 "$cron_path"
2020-05-08 20:42:27 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-09-08 10:11:26 +02:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=3
2020-05-08 20:42:27 +02:00
2021-02-20 19:31:31 +01:00
#backup & Update nginx MIME type so wasm mime type is recognized
if [ !$(grep wasm /etc/nginx/mime.types) ]; then
ynh_print_info "/etc/nginx/mime.types saved as /etc/nginx/mime.types.$app"
cp /etc/nginx/mime.types /etc/nginx/mime.types.$app
ynh_replace_string --match_string=" application/octet-stream bin exe dll;" --replace_string=" application/wasm wasm;\n\n application/octet-stream bin exe dll;" --target_file="/etc/nginx/mime.types"
ynh_store_file_checksum --file="/etc/nginx/mime.types"
2020-05-08 20:42:27 +02:00
fi
2021-02-20 19:31:31 +01:00
# Create a dedicated nginx config
ynh_add_nginx_config
2020-05-08 20:42:27 +02:00
# Set permissions to app files
2023-08-20 11:23:25 +02:00
chown -R www-data:multimedia $install_dir
2022-01-30 22:35:23 +01:00
# Requested so that multimedia group can see the Game folder : all parent folder should be readable by others
2023-08-20 11:23:25 +02:00
chmod 750 $install_dir
2020-05-08 20:42:27 +02:00
2021-05-09 11:19:10 +02:00
#=================================================
# SETUP INDEX
#=================================================
#indexer use the current directory to run #https://github.com/libretro/RetroArch/tree/master/pkg/emscripten,
# so we have to cd in it to use it correctly => last step of the install so to not mess with other commands relative path
#Indexer will list the available ROM and cores for Retroarch
ynh_script_progression --message="Setup Indexer for content..." --weight=3
2023-05-07 18:10:21 +02:00
cd $install_dir/assets/frontend/bundle/
2021-05-09 11:19:10 +02:00
../../../indexer > .index-xhr
2023-05-07 18:10:21 +02:00
cd $install_dir/assets/cores
2021-05-09 11:19:10 +02:00
../../indexer > .index-xhr
2020-05-08 20:42:27 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2021-05-08 15:43:13 +02:00
ynh_script_progression --message="Installation of $app completed" --last