1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/prettynoemiecms_ynh.git synced 2024-09-03 20:06:36 +02:00
prettynoemiecms_ynh/scripts/_common.sh

48 lines
1.4 KiB
Bash
Raw Normal View History

2018-04-23 22:40:01 +02:00
#!/bin/bash
# ============= FUTURE YUNOHOST HELPER =============
# Delete a file checksum from the app settings
#
# $app should be defined when calling this helper
#
# usage: ynh_remove_file_checksum file
# | arg: file - The file for which the checksum will be deleted
ynh_delete_file_checksum () {
local checksum_setting_name=checksum_${1//[\/ ]/_} # Replace all '/' and ' ' by '_'
ynh_app_setting_delete $app $checksum_setting_name
2018-04-27 10:30:15 +02:00
}
# Package dependencies
pkg_dependencies="php5-cli php5-common php5-intl php5-json git"
# composer from roundcube_ynh
# Execute a composer command from a given directory
# usage: composer_exec workdir COMMAND [ARG ...]
exec_composer() {
local workdir=$1
shift 1
COMPOSER_HOME="${workdir}/.composer" \
php "${workdir}/composer.phar" $@ \
2018-11-19 00:17:14 +01:00
-d "${workdir}" --no-interaction
2018-04-27 10:30:15 +02:00
}
# Install and initialize Composer in the given directory
# usage: init_composer destdir
init_composer() {
local destdir=$1
# install composer
curl -sS https://getcomposer.org/installer \
| COMPOSER_HOME="${destdir}/.composer" \
php -- --quiet --install-dir="$destdir" \
|| ynh_die "Unable to install Composer"
# install composer.json
2018-04-27 10:37:57 +02:00
#cp "${destdir}/composer.json-dist" "${destdir}/composer.json"
2018-04-27 10:30:15 +02:00
# update dependencies to create composer.lock
exec_composer "$destdir" install --no-dev \
|| ynh_die "Unable to install app using composer"
}