1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jellyfin_ynh.git synced 2024-09-03 19:26:29 +02:00

fix jellyfin dep

This commit is contained in:
Tagada 2023-09-16 23:20:17 +02:00
parent a45e9e2348
commit 790b0fb530

View file

@ -97,7 +97,12 @@ case "$YNH_ARCH" in
*) ffmpeg_deps+=( libdrm-intel1 libopencl1 ) ;;
esac
jellyfin_deps=(at libsqlite3-0 libfontconfig1 libfreetype6 libssl1.1)
jellyfin_deps=(at libsqlite3-0 libfontconfig1 libfreetype6 )
case "$debian" in
bullseye) jellyfin_deps+="libssl1.1" ;;
bookworm) jellyfin_deps="libssl3" ;;
*) echo "Unknown release: $debian" >&2; exit 1 ;;
esac
pkg_dependencies="${ffmpeg_deps[*]} ${jellyfin_deps[*]}"