blob: 05fc6b9fa4062d345a674d9941ae97935d3abc07 (
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
|
# Maintainer: Pieter Goetschalckx <3.14.e.ter <at> gmail <dot> com>
pkgname=bazarr
pkgver=0.6.4
pkgrel=1
pkgdesc="Manage and download subtitles for Sonarr and Radarr."
arch=('any')
url="https://github.com/morpheus65535/bazarr"
license=('GPL3')
depends=('python2'
'python2-apprise'
'python2-apscheduler'
'python2-babelfish'
'python2-bottle'
'python2-bottle-fdsend'
'python2-dogpile.cache'
'python2-gitpython'
'python2-langdetect'
'python2-logutils'
'python2-pillow'
'python2-py-pretty'
'python2-pycountry'
'python2-pytz'
'python2-requests'
'python2-tzlocal'
'python2-urllib3'
'python2-waitress'
'python2-webtest')
makedepends=('git')
source=("bazarr-${pkgver}.tar.gz::https://github.com/morpheus65535/bazarr/archive/v${pkgver}.tar.gz"
'bazarr.service'
'bazarr.sysusers'
'bazarr.tmpfiles')
sha256sums=('7e453eb6c9deba707333f00ae73647f923d1204f8c2d5a6440994e2c64926551'
'e3c57f1a1d9ddd87d097efe2df5148f10de79c445fe6eee158f64b4335f3e174'
'92fd48cbd7e5fe3a0388bbe756a52098fc461ef2dc87d9e886452e4f15acdcdc'
'7f75f2c2634524e90b1dea7649fceceb57949efa9db365cfa9e29e58690def4e')
package() {
install -d -m 755 "${pkgdir}/usr/lib/bazarr"
cp -dpr --no-preserve=ownership "${srcdir}/bazarr-${pkgver}/"* "${pkgdir}/usr/lib/bazarr"
install -D -m 644 "${srcdir}/bazarr.service" "${pkgdir}/usr/lib/systemd/system/bazarr.service"
install -D -m 644 "${srcdir}/bazarr.sysusers" "${pkgdir}/usr/lib/sysusers.d/bazarr.conf"
install -D -m 644 "${srcdir}/bazarr.tmpfiles" "${pkgdir}/usr/lib/tmpfiles.d/bazarr.conf"
}
|