diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-12-12 20:10:05 +0100 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-12-12 20:18:59 +0100 |
commit | 17ca7c045eadbabe17ed33d57750c831f27ba8cc (patch) | |
tree | f4dffaabe63ad18b8add07075db7136d5ac22de0 /apks/jellyfin-web | |
parent | 1ef93bbbb4e6e0a7470b128d11c1c5a140ae5553 (diff) | |
download | apkbuilds-17ca7c045eadbabe17ed33d57750c831f27ba8cc.tar.gz apkbuilds-17ca7c045eadbabe17ed33d57750c831f27ba8cc.tar.bz2 apkbuilds-17ca7c045eadbabe17ed33d57750c831f27ba8cc.zip |
ref: Remove unnecessary packages
Some package have made into the community repository on 3.17, so there
is no need to keep them.
Diffstat (limited to 'apks/jellyfin-web')
-rw-r--r-- | apks/jellyfin-web/APKBUILD | 28 | ||||
-rw-r--r-- | apks/jellyfin-web/jellyfin-web.post-install | 6 |
2 files changed, 0 insertions, 34 deletions
diff --git a/apks/jellyfin-web/APKBUILD b/apks/jellyfin-web/APKBUILD deleted file mode 100644 index 71e0652..0000000 --- a/apks/jellyfin-web/APKBUILD +++ /dev/null @@ -1,28 +0,0 @@ -# Maintainer: Simon Zeni <simon@bl4ckb0ne.ca> -pkgname=jellyfin-web -pkgver=10.8.7 -pkgrel=0 -pkgdesc="Web Client for Jellyfin" -url="https://jellyfin.org/" -# armv7: oom -arch="x86_64" -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=" -5953b1007cc771542aaad907ecc292b311e457e625c2e9d4e0246147488651ea556e8c3973fd603760326173db14939e4ce728c8f9fc563a7f3ab740453e60d8 jellyfin-web-10.8.5.tar.gz -" diff --git a/apks/jellyfin-web/jellyfin-web.post-install b/apks/jellyfin-web/jellyfin-web.post-install deleted file mode 100644 index a6e6942..0000000 --- a/apks/jellyfin-web/jellyfin-web.post-install +++ /dev/null @@ -1,6 +0,0 @@ -#!/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 |