2015-06-18 23:40:52 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-06-14 06:25:54 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2024-07-12 13:22:18 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALL NODEJS
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Updating NodeJS..." --weight=1
|
|
|
|
|
|
|
|
ynh_exec_warn_less ynh_install_nodejs --nodejs_version="$nodejs_version"
|
|
|
|
|
2020-06-14 06:25:54 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2024-05-03 12:03:47 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..."
|
2020-06-14 06:25:54 +02:00
|
|
|
|
2024-05-03 12:03:47 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2024-07-12 13:35:52 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir/sources" --full_replace=1
|
2023-10-05 10:27:19 +02:00
|
|
|
|
|
|
|
chmod -R o-rwx "$install_dir"
|
2024-07-12 13:22:18 +02:00
|
|
|
chown -R "$app:www-data" "$install_dir"
|
2020-06-14 06:25:54 +02:00
|
|
|
|
|
|
|
#=================================================
|
2024-07-12 13:22:18 +02:00
|
|
|
# CONFIGURE APP
|
2020-06-14 06:25:54 +02:00
|
|
|
#=================================================
|
2024-07-12 13:22:18 +02:00
|
|
|
ynh_script_progression --message="Configuring $app..."
|
|
|
|
|
|
|
|
_configure_framagames
|
2020-06-14 06:25:54 +02:00
|
|
|
|
2024-07-12 13:22:18 +02:00
|
|
|
#=================================================
|
|
|
|
# BUILD APP
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Building $app..."
|
|
|
|
|
|
|
|
_build_install_framagames
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SYSTEM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
2020-06-14 06:25:54 +02:00
|
|
|
|
2022-08-06 12:18:45 +02:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
2020-06-14 06:25:54 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Upgrade of $app completed"
|