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

62 lines
2 KiB
Text
Raw Permalink Normal View History

2017-03-17 12:10:31 +01:00
#!/bin/bash
2020-10-08 21:05:06 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2018-03-19 03:56:00 +01:00
source _common.sh
2020-10-08 21:05:06 +02:00
source /usr/share/yunohost/helpers
2018-03-19 03:56:00 +01:00
2024-01-05 15:00:44 +01:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
ynh_script_progression --message="Installing dependencies..." --weight=1
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2020-10-08 21:05:06 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression --message="Setting up source files..." --weight=6
# Download, check integrity, uncompress and patch the source from app.src
2024-01-05 15:00:44 +01:00
ynh_setup_source --dest_dir="$install_dir/source"
2020-10-08 21:05:06 +02:00
chmod -R o-rwx "$install_dir"
chown -R "$app:www-data" "$install_dir"
2020-10-08 21:05:06 +02:00
#=================================================
2024-01-05 15:00:44 +01:00
# BUILD WITH NPM
2022-07-03 04:33:56 +02:00
#=================================================
2024-01-05 15:00:44 +01:00
ynh_script_progression --message="Building $app..." --weight=1
pushd "$install_dir/source"
ynh_use_nodejs
ynh_exec_warn_less ynh_exec_as "$app" env "$ynh_node_load_PATH" npm i
ynh_exec_warn_less ynh_exec_as "$app" env "$ynh_node_load_PATH" npm run build
popd
2024-01-05 15:46:07 +01:00
ynh_secure_remove --file="$install_dir/source/node_modules"
ynh_secure_remove --file="$install_dir/.cache"
ynh_secure_remove --file="$install_dir/.npm"
2018-03-19 03:56:00 +01:00
2024-01-05 15:00:44 +01:00
mv "$install_dir/source/dist/editor" "$install_dir/www"
2017-03-17 12:10:31 +01:00
2024-01-05 15:00:44 +01:00
chmod -R o-rwx "$install_dir"
chown -R "$app:www-data" "$install_dir"
2017-03-17 12:10:31 +01:00
2022-07-03 04:33:56 +02:00
#=================================================
# SYSTEM CONFIGURATION
2020-10-08 21:05:06 +02:00
#=================================================
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
2020-10-08 21:05:06 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2017-03-17 12:10:31 +01:00
2020-10-08 21:05:06 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2017-03-17 12:10:31 +01:00
2022-07-03 04:33:56 +02:00
ynh_script_progression --message="Installation of $app completed" --last