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

26 lines
713 B
Bash
Raw Normal View History

2019-06-06 06:04:22 +02:00
#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
# dependencies used by the app
2020-04-30 05:55:46 +02:00
pkg_dependencies="openjdk-8-jre-headless|openjdk-11-jre-headless debconf|debconf-2.0 procps uuid-runtime"
2019-06-06 06:04:22 +02:00
#=================================================
# PERSONAL HELPERS
#=================================================
2019-08-25 03:40:54 +02:00
ynh_version_gt ()
{
dpkg --compare-versions "$1" gt "$2"
}
2019-06-06 06:04:22 +02:00
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
#=================================================
# FUTURE OFFICIAL HELPERS
#=================================================