2015-06-18 23:40:52 +02:00
|
|
|
#!/bin/bash
|
2016-12-24 12:38:35 +01:00
|
|
|
|
2020-06-14 06:25:54 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-12-24 12:38:35 +01:00
|
|
|
|
2020-06-14 06:25:54 +02:00
|
|
|
source _common.sh
|
2016-12-24 12:38:35 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
2015-06-18 23:40:52 +02:00
|
|
|
|
2024-07-12 12:53:33 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALL NODEJS
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Installing 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
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Setting up source files..."
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2024-07-12 12:53:33 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir/sources"
|
2020-06-14 06:25:54 +02:00
|
|
|
|
2023-10-05 10:27:19 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
2024-07-12 12:53:33 +02:00
|
|
|
chown -R "$app:www-data" "$install_dir"
|
2020-06-14 06:25:54 +02:00
|
|
|
|
|
|
|
#=================================================
|
2024-07-12 12:53:33 +02:00
|
|
|
# BUILD APP
|
2020-06-14 06:25:54 +02:00
|
|
|
#=================================================
|
2024-07-12 12:53:33 +02:00
|
|
|
ynh_script_progression --message="Building $app..."
|
2020-06-14 06:25:54 +02:00
|
|
|
|
2024-07-12 12:53:33 +02:00
|
|
|
pushd "$install_dir/sources"
|
|
|
|
ynh_use_nodejs
|
|
|
|
ynh_exec_warn_less ynh_exec_as "$app" env "$ynh_node_load_PATH" "$ynh_npm" run commons
|
|
|
|
ynh_exec_warn_less ynh_exec_as "$app" env "$ynh_node_load_PATH" "$ynh_npm" run prod
|
|
|
|
popd
|
|
|
|
|
|
|
|
mv -f "$install_dir/sources/dist" "$install_dir/www"
|
|
|
|
mv -f "$install_dir/sources/games/"* "$install_dir/www"
|
|
|
|
cp "$install_dir/www/fr/index.html" "$install_dir/www/index.html"
|
|
|
|
# cd public && for f in $(find -type l);do cp --remove-destination $(readlink -f $f) $f;done;
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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="Installation of $app completed"
|