From afb184f066a41c9a89b1bf7d9efa95ec21f067f6 Mon Sep 17 00:00:00 2001 From: dr41nU <50152843+dr41nU@users.noreply.github.com> Date: Fri, 23 Aug 2019 19:37:32 +0200 Subject: [PATCH] Add arm64 arch for jellyfin --- scripts/install | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 001e605..4981a09 100644 --- a/scripts/install +++ b/scripts/install @@ -111,7 +111,12 @@ esac ynh_app_setting_set $app final_path $final_path # Download, check integrity, uncompress and patch the source from app.src -ynh_setup_source "$final_path" + +case `uname -m` in + x86_64) ynh_setup_source "$final_path" ;; + aarch64) ynh_setup_source "$final_path" "jellyfin-arm64" ;; + *) ynh_die "Unknown arch" ;; +esac #==============================================