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

31 lines
1.1 KiB
Bash
Raw Normal View History

2019-06-06 06:04:22 +02:00
#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
# dependencies used by the app
2022-02-11 00:47:00 +01:00
pkg_dependencies="openjdk-8-jre-headless|openjdk-11-jre-headless debconf|debconf-2.0 procps uuid-runtime lua-ldap"
2022-04-14 01:18:10 +02:00
pkg_dependencies_arm="automake autoconf build-essential libtool git maven m4"
2022-04-14 00:57:04 +02:00
pkg_extra_dependencies_arm="openjdk-8-jre_8u322-b06-1~deb9u1_armhf.deb \
openjdk-8-jre-headless_8u322-b06-1~deb9u1_armhf.deb \
openjdk-8-jdf_8u322-b06-1~deb9u1_armhf.deb \
openjdk-8-jdk-headless_8u322-b06-1~deb9u1_armhf.deb"
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
#=================================================