blob: 0d2e8ee8086fa6d65cb996176fa479f96a563540 (
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
|
# Maintainer: taotieren <admin@taotieren.com>
pkgname=mediawarp
_name=MediaWarp
pkgver=0.0.5
pkgrel=0
pkgdesc="EmbyServer API Optimization: Optimize playback of Strm files, customize the front-end style, customize the allowed access to the client, embedded scripts, work with Alist to realize Emby playback of web resources, recommended to use with AutoFilm."
arch=(x86_64
aarch64
riscv64)
url="https://github.com/Akimio521/MediaWarp"
license=('AGPL-3.0-only')
provides=(${pkgname})
conflicts=(${pkgname})
#replaces=(${pkgname})
depends=(
glibc
sh)
optdepends=(
'alist: File list program that supports multiple storage'
'autofilm: A small project to provide Strm direct-link playback for Emby and Jellyfin servers, recommended for use with MediaWarp.'
'emby-server: Bring together your videos, music, photos, and live television'
'jellyfin-server: Jellyfin server backend')
makedepends=(
go)
backup=(etc/${pkgname}/config.yaml)
options=('!strip' '!debug')
install=${pkgname}.install
source=(
"${_name}-${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz"
"${pkgname}.service"
"${pkgname}.tmpfiles"
"${pkgname}.sysusers"
)
sha256sums=('50c316e2789a34530f8ae5ca2dc37264421ef54ea1cc7aabe2028efdf21ae764'
'162fb09f8009c356fb60a6f2c23c1c910768aa4191d0f625400cbe9f7d275a3d'
'3e7e96f77a13441c82ed7fc066c1123bab44b3dc7f13e41378e573b952518846'
'7f0393bb6d622ad51b72c82df9a2313f378bf2d20019fee36671ffcc5878453e')
build() {
cd "${srcdir}/${_name}-${pkgver}"
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
export GO111MODULE=on
export GOPROXY=https://goproxy.cn,direct
# go clean -modcache
# go mod init "${url#https://}"
go mod tidy
mkdir -pv build/
go build \
-trimpath \
-buildmode=pie \
-mod=readonly \
-modcacherw \
-ldflags "-linkmode external -extldflags \"${LDFLAGS}\"" \
-o build
}
package() {
cd "${srcdir}/${_name}-${pkgver}"
install -Dm755 build/${_name} "${pkgdir}/usr/share/${pkgname}/${pkgname}"
install -Dm755 /dev/stdin "${pkgdir}/usr/bin/${pkgname}" <<EOF
#!/bin/sh
cd /usr/share/${pkgname}/
exec ${pkgname} "\$@"
EOF
install -Dm0644 "${srcdir}/${_name}-${pkgver}/config/config.yaml.example" "${pkgdir}/etc/${pkgname}/config.yaml"
install -dm0644 "${pkgdir}/usr/share/${pkgname}/logs" \
"${pkgdir}/usr/share/${pkgname}/static" \
"${pkgdir}/usr/share/${pkgname}/config"
install -Dvm644 "${srcdir}/${pkgname}.service" -t "${pkgdir}/usr/lib/systemd/system/"
install -Dvm644 "${srcdir}/${pkgname}.sysusers" "${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
install -Dvm644 "${srcdir}/${pkgname}.tmpfiles" "${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
}
|