aboutsummaryrefslogtreecommitdiff
path: root/apks/jellyfin-web
diff options
context:
space:
mode:
Diffstat (limited to 'apks/jellyfin-web')
-rw-r--r--apks/jellyfin-web/APKBUILD28
-rw-r--r--apks/jellyfin-web/jellyfin-web.post-install6
2 files changed, 34 insertions, 0 deletions
diff --git a/apks/jellyfin-web/APKBUILD b/apks/jellyfin-web/APKBUILD
new file mode 100644
index 0000000..2786c42
--- /dev/null
+++ b/apks/jellyfin-web/APKBUILD
@@ -0,0 +1,28 @@
+# Maintainer: Simon Zeni <simon@bl4ckb0ne.ca>
+pkgname=jellyfin-web
+pkgver=10.8.8
+pkgrel=0
+pkgdesc="Web Client for Jellyfin"
+url="https://jellyfin.org/"
+# armv7: oom
+arch="x86_64 aarch64"
+options="!check net" # no tests
+license="GPL-2.0-only"
+install="$pkgname.post-install"
+depends="jellyfin"
+makedepends="npm"
+source="$pkgname-$pkgver.tar.gz::https://github.com/jellyfin/jellyfin-web/archive/refs/tags/v$pkgver.tar.gz"
+
+build() {
+ npm ci --no-audit
+}
+
+package() {
+ mkdir -p "$pkgdir"/usr/lib/jellyfin/jellyfin-web
+
+ cp -r "$builddir"/dist/* "$pkgdir"/usr/lib/jellyfin/jellyfin-web
+}
+
+sha512sums="
+88a829248f1d2506509a3610cc67575899df4fcb371fdd766b4a91f2005f387055ac716047293882cc494e2894f4121049c9525f468a33c99a12ff5d0c87fb19 jellyfin-web-10.8.8.tar.gz
+"
diff --git a/apks/jellyfin-web/jellyfin-web.post-install b/apks/jellyfin-web/jellyfin-web.post-install
new file mode 100644
index 0000000..a6e6942
--- /dev/null
+++ b/apks/jellyfin-web/jellyfin-web.post-install
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+printf " *\n * The default jellyfin configuration does not enable the web ui.\n"
+printf " * Remove the '--nowebclient' option from /etc/conf.d/jellyfin to enable it.\n *\n"
+
+exit 0