George Rawlinson pushed to branch main at Arch Linux / Packaging / Packages / 
jellyfin-server


Commits:
8c163a67 by Maximilian Blüml at 2026-01-15T17:34:18+01:00
Avoid hardcoded dotnet runtime identifier

Switch dotnet publish from full RID to operating system flag, s.t.
the package can be built on multiple architectures without the
need to modify the PKGBUILD at all

The flag --os linux enforcers dotnet cli to use the architecture
of the current host's architecture, hence x86_64 results in an RID
equals linux-x64, aarch64 in an RID equals linux-arm64, ...

- - - - -


1 changed file:

- PKGBUILD


Changes:

=====================================
PKGBUILD
=====================================
@@ -10,7 +10,6 @@ arch=(x86_64)
 url='https://jellyfin.org'
 _url='https://github.com/jellyfin/jellyfin'
 license=(GPL-2.0-or-later)
-_dotnet_runtime=linux-x64
 depends=(
   aspnet-runtime-9.0
   bash
@@ -78,7 +77,7 @@ build(){
     --configuration Release \
     --output builddir \
     --self-contained false\
-    --runtime "$_dotnet_runtime" \
+    --os linux \
     -p:DebugSymbols=false \
     -p:DebugType=none
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jellyfin-server/-/commit/8c163a676ffbaf2a62fc67fca2a39bcde3181b9f

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jellyfin-server/-/commit/8c163a676ffbaf2a62fc67fca2a39bcde3181b9f
You're receiving this email because of your account on gitlab.archlinux.org.


Reply via email to