1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/invoiceninja_ynh.git synced 2024-09-03 19:26:22 +02:00
invoiceninja_ynh/scripts/_common.sh

29 lines
804 B
Bash
Raw Normal View History

2020-05-02 10:17:12 +02:00
#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
#=================================================
# PERSONAL HELPERS
#=================================================
2024-01-05 23:51:07 +01:00
_install_phantomjs() {
tmpdir="$(mktemp -d)"
ynh_setup_source --dest_dir="$tmpdir" --source_id="phantomjs"
pushd "$tmpdir"
ynh_exec_warn_less ./configure && ynh_exec_warn_less make
ynh_exec_warn_less make install
popd
ynh_secure_remove --file="$tmpdir"
}
2020-05-02 10:17:12 +02:00
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
#=================================================
# FUTURE OFFICIAL HELPERS
#=================================================