blob: 14cdd7b3c781f4f58b2bfa16efef1f3da3fba8a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# Maintainer: Nicola Hinssen <nicola.hinssen@gmail.com>
# Contributor: Bjorn Nostvold <bjorn.nostvold@gmail.com>
# Contributor: Maxime Gauduin <alucryd@archlinux.org>
# Contributor: Daniel Seymour <dannyseeless@gmail.com>
pkgname=emby-server-beta
pkgver=4.9.0.33
pkgrel=1
_ffmpeg_ver=2023_06_25
pkgdesc='Bring together your videos, music, photos, and live television'
arch=('x86_64')
url='https://emby.media'
license=('custom')
depends=('alsa-lib'
'aom'
'aspnet-runtime'
'bzip2'
'dotnet-runtime'
'expat'
'fontconfig'
'fribidi'
'glibc'
'gmp'
'gnutls'
'lame'
'libass.so'
'libchromaprint.so'
'libdav1d.so'
'libdrm'
'libfreetype.so'
'libjpeg-turbo'
'libmfx'
'libpng'
'libtesseract.so'
'libtheora'
'libva-drm.so'
'libva.so'
'libvips'
'libvorbisenc.so'
'libvorbis.so'
'libwebp'
'libx264.so'
'libx265.so'
'ocl-icd'
'opus'
'skia-sharp'
'sqlite'
'zvbi'
'zlib')
makedepends=()
optdepends=('intel-media-sdk: Intel QuickSync support (requires Emby Premiere)'
'nvidia-utils: Nvidia NVDEC/NVENC support (requires Emby Premiere)')
provides=('emby-server')
conflicts=('emby-server')
source=("https://github.com/MediaBrowser/Emby.Releases/releases/download/${pkgver}/embyserver-netcore_${pkgver}.zip"
"https://mediabrowser.github.io/embytools/ffmpeg-${_ffmpeg_ver}-x64.tar.xz"
'emby-server'
'emby-server.conf'
'emby-server.service'
'license.docx')
noextract=('license.docx')
backup=('etc/conf.d/emby-server')
install=emby-server.install
sha256sums=('674311599262cad9a4b757081f666c8434406b47d9c71103810837fd8b668688'
'70db9e2c1d5eb4345e34a6329918219da12684dded8226afff0f779a4a12f78c'
'0351d6e9118853e3aa275d62b67dce4444b3d85130b05fb889b2069f364f47ca'
'8bd03d803e295bea89e9c7bad17e774218f8dc4be9826af124b1f83bc4b256b6'
'a7f2e38d2d196984d1c1632c851215aea9072b3af998d10a6b68477ad886ea14'
'a6d7ea65dcb06392479a85e1a10a7aeb872d803da6f784f6935fcd4ee63008c6')
prepare() {
rm -rf system/{electron,runtimes/{osx,tizen*,win*}}
}
package() {
install -dm 755 "${pkgdir}"/usr/lib
cp -dr --no-preserve='ownership' system "${pkgdir}"/usr/lib/emby-server
install -Dm 755 emby-server -t "${pkgdir}"/usr/bin/
install -Dm 644 emby-server.service -t "${pkgdir}"/usr/lib/systemd/system/
install -Dm 644 emby-server.conf "${pkgdir}"/etc/conf.d/emby-server
install -Dm 644 license.docx -t "${pkgdir}"/usr/share/licenses/$pkgname/license.docx
install -dm 755 "${pkgdir}/opt/emby-server/bin"
install -dm 755 "${pkgdir}/opt/emby-server/lib"
cp -dr --no-preserve='ownership' bin "${pkgdir}/opt/emby-server"
cp -dr --no-preserve='ownership' lib "${pkgdir}/opt/emby-server"
}
|