mirror of
https://github.com/YunoHost-Apps/jellyfin_ynh.git
synced 2024-09-03 19:26:29 +02:00
Update install
This commit is contained in:
parent
79c3570935
commit
515f22a13a
1 changed files with 13 additions and 4 deletions
|
@ -112,9 +112,17 @@ esac
|
|||
|
||||
# Download, check integrity, uncompress and patch the source from jellyfin-[arch].src
|
||||
case $(uname -m) in
|
||||
x86_64) ynh_setup_source "$final_path" "jellyfin-amd64" ;;
|
||||
aarch64) ynh_setup_source "$final_path" "jellyfin-arm64" ;;
|
||||
armv7l) ynh_setup_source "$final_path" "jellyfin-armhf" ;;
|
||||
x86_64) ynh_setup_source "$final_path" "jellyfin-server-amd64" ;;
|
||||
aarch64) ynh_setup_source "$final_path" "jellyfin-server-arm64" ;;
|
||||
armv7l) ynh_setup_source "$final_path" "jellyfin-server-armhf" ;;
|
||||
*) ynh_die "Unknown arch" ;;
|
||||
esac
|
||||
|
||||
# Download, check integrity, uncompress and patch the source from jellyfin-[arch].src
|
||||
case $(uname -m) in
|
||||
x86_64) ynh_setup_source "$final_path" "jellyfin-web-amd64" ;;
|
||||
aarch64) ynh_setup_source "$final_path" "jellyfin-web-arm64" ;;
|
||||
armv7l) ynh_setup_source "$final_path" "jellyfin-web-armhf" ;;
|
||||
*) ynh_die "Unknown arch" ;;
|
||||
esac
|
||||
|
||||
|
@ -126,7 +134,8 @@ esac
|
|||
#==============================================
|
||||
|
||||
dpkg --install "$final_path"/jellyfin-ffmpeg.deb
|
||||
dpkg --install "$final_path"/jellyfin.deb
|
||||
dpkg --install "$final_path"/jellyfin-server.deb
|
||||
dpkg --install "$final_path"/jellyfin-web.deb
|
||||
rm "$final_path"/*.deb
|
||||
|
||||
#=================================================
|
||||
|
|
Loading…
Add table
Reference in a new issue