blob: d6c086058c9af4c27e010436234ff80304eb65ad (
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
|
# Maintainer: taotieren <admin@taotieren.com>
pkgname=autofilm-git
pkgver=1.2.5.r36.g71d73d8
pkgrel=1
pkgdesc="A small project to provide Strm direct-link playback for Emby and Jellyfin servers, recommended for use with MediaWarp."
arch=(x86_64
aarch64
riscv64)
url="https://github.com/Akimio521/AutoFilm"
license=('AGPL-3.0-only')
provides=(${pkgname%-git})
conflicts=(${pkgname%-git})
#replaces=(${pkgname})
depends=(
glibc
sh
zlib
)
# _makepydeps=(
# pyyaml
# click
# feedparser
# apscheduler
# aiofile
# httpx
# pydantic
# )
makedepends=(
git
python-build
python-installer
python-wheel
python-setuptools
python
pyinstaller
# "${_makepydeps[@]/#/python-}"
)
optdepends=(
'alist: File list program that supports multiple storage'
'mediawarp: 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.'
'emby-server: Bring together your videos, music, photos, and live television'
'jellyfin-server: Jellyfin server backend')
backup=(usr/share/${pkgname%-git}/config/config.yaml)
options=('!strip' '!debug')
# install=${pkgname}.install
source=(
"${pkgname}::git+${url}.git"
"${pkgname%-git}.service"
)
sha256sums=('SKIP'
'244dab4d8afffd786c394570bddf8c1e1d8313dd64f8f05977e06c70da9b2c39')
pkgver() {
cd "${srcdir}/${pkgname}"
(
set -o pipefail
git describe --long --tag --abbrev=7 2>/dev/null | sed 's/^v//g;s/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
)
}
prepare() {
git -C "${srcdir}/${pkgname}" clean -dfx
}
build() {
cd "${srcdir}/${pkgname}"
pyinstaller --onefil app/main.py
}
package() {
cd "${srcdir}/${pkgname}"
install -Dm755 dist/main ${pkgdir}/usr/share/${pkgname%-git}/${pkgname%-git}
install -Dm755 /dev/stdin "${pkgdir}/usr/bin/${pkgname%-git}" <<EOF
#!/bin/sh
cd /usr/share/${pkgname%-git}/
exec ${pkgname%-git} "\$@"
EOF
install -Dm0644 "${srcdir}/${pkgname}/config/config.yaml.example" "${pkgdir}/usr/share/${pkgname%-git}/config/config.yaml"
install -dm0644 "${pkgdir}/usr/share/${pkgname%-git}/logs"
install -Dvm644 "${srcdir}/${pkgname%-git}.service" -t "${pkgdir}/usr/lib/systemd/system/"
}
|