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

26 lines
861 B
Bash
Raw Normal View History

2018-10-04 02:33:13 +02:00
#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
2022-10-16 20:50:04 +02:00
# PHP APP SPECIFIC
#=================================================
YNH_PHP_VERSION="7.4"
2022-10-16 20:50:04 +02:00
php_dependencies="php${YNH_PHP_VERSION}-intl php${YNH_PHP_VERSION}-mbstring php${YNH_PHP_VERSION}-curl php${YNH_PHP_VERSION}-json php${YNH_PHP_VERSION}-gettext"
2021-01-10 19:10:35 +01:00
2022-10-16 20:50:04 +02:00
# dependencies used by the app (must be on a single line)
pkg_dependencies="$php_dependencies"
2021-01-10 19:10:35 +01:00
#=================================================
# PERSONAL HELPERS
#=================================================
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
#=================================================
# FUTURE OFFICIAL HELPERS
#=================================================