mirror of
https://github.com/YunoHost-Apps/scratch_ynh.git
synced 2024-09-03 20:26:03 +02:00
52 lines
1.5 KiB
Bash
52 lines
1.5 KiB
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# INSTALL DEPENDENCIES
|
|
#=================================================
|
|
ynh_script_progression "Installing nodejs..."
|
|
|
|
ynh_nodejs_install
|
|
|
|
#=================================================
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
#=================================================
|
|
ynh_script_progression "Upgrading source files..."
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
ynh_setup_source --dest_dir="$install_dir/sources" --full_replace
|
|
|
|
#=================================================
|
|
# Build
|
|
#=================================================
|
|
ynh_script_progression "Installing $app..."
|
|
|
|
pushd "$install_dir/sources"
|
|
|
|
ynh_hide_warnings ynh_exec_as_app npm install
|
|
ynh_hide_warnings ynh_exec_as_app BUILD_MODE=dist npm run build
|
|
popd
|
|
|
|
ynh_safe_rm "$install_dir/www"
|
|
mv "$install_dir/sources/build" "$install_dir/www"
|
|
ynh_safe_rm "$install_dir/sources"
|
|
|
|
#=================================================
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
|
#=================================================
|
|
ynh_script_progression "Upgrading system configurations related to $app..."
|
|
|
|
# Create a dedicated NGINX config
|
|
ynh_config_add_nginx
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression "Upgrade of $app completed"
|