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:
parent
a45e9e2348
commit
790b0fb530
1 changed files with 6 additions and 1 deletions
|
@ -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[*]}"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue