blob: 632d4ce69b60a034d835d069076429fa802a38fd (
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
89
90
91
92
93
|
# Maintainer: Donald Webster <fryfrog@gmail.com>
pkgname=sabnzbd-git
pkgver=r9899.14e00b366
pkgrel=1
pkgdesc='A web-interface based binary newsgrabber with NZB file support'
url='http://www.sabnzbd.org'
arch=('any')
license=('GPL')
depends=(
'apprise'
'curl'
'par2cmdline'
'python'
'python-babelfish'
'python-cffi'
'python-chardet'
'python-cheetah3'
'python-cheroot'
'python-cherrypy'
'python-configobj'
'python-cryptography'
'python-dateutil'
'python-feedparser'
'python-guessit'
'python-jaraco.classes'
'python-jaraco.collections'
'python-jaraco.context'
'python-jaraco.functools'
'python-jaraco.text'
'python-more-itertools'
'python-notify2'
'python-portend'
'python-portend'
'python-puremagic'
'python-pycparser'
'python-pysocks'
'python-pytz'
'python-rarfile'
'python-rebulk'
'python-sabctools'
'python-sgmllib3k'
'python-six'
'python-tempora'
'python-zc.lockfile'
'sqlite'
'unrar'
'unzip'
)
optdepends=(
'p7zip: for .7z support'
'dbus-python: for system power management'
'python-orjson: ~2x faster than ujson, requires rust'
'par2cmdline-turbo: a faster par2cmdline fork'
)
provides=('sabnzbd')
conflicts=('sabnzbd')
backup=('var/lib/sabnzbd/sabnzbd.ini')
source=("${pkgname%-git}::git+https://github.com/sabnzbd/sabnzbd.git"
'sabnzbd.service'
'sabnzbd@.service'
'sabnzbd.sysusers'
'sabnzbd.tmpfiles')
sha256sums=('SKIP'
'c1bcdb5ce7787aab5ab4f07508c1451441f42df0ec7be85a5dedda0a5ee70014'
'c9e7f2de422db5bdb9d6bf9e03300b8ac91d9b117295870bc6124e6733aaf67a'
'525f294372963fde09db08b0368c80078a16d4cefcb34f8179706336709afdf7'
'3a3c292020cca0251478c70a6499afa64aeca3dfcb6d5e32f6e21d5d4d94fa81')
pkgver() {
cd "${pkgname%-git}"
#git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
mkdir -p "${pkgdir}/usr/lib/sabnzbd"
mkdir -p "${pkgdir}/var/lib/sabnzbd"
touch "${pkgdir}/var/lib/sabnzbd/sabnzbd.ini"
cp -r "${srcdir}/sabnzbd/"* "${pkgdir}/usr/lib/sabnzbd"
find "${pkgdir}/usr/lib/sabnzbd" -type d -exec chmod 755 {} \;
find "${pkgdir}/usr/lib/sabnzbd" -type f -exec chmod 644 {} \;
chmod 755 "${pkgdir}/usr/lib/sabnzbd/SABnzbd.py"
install -D -m 644 "${srcdir}/sabnzbd.service" "${pkgdir}/usr/lib/systemd/system/sabnzbd.service"
install -D -m 644 "${srcdir}/sabnzbd@.service" "${pkgdir}/usr/lib/systemd/system/sabnzbd@.service"
install -D -m 644 "${srcdir}/sabnzbd.sysusers" "${pkgdir}/usr/lib/sysusers.d/sabnzbd.conf"
install -D -m 644 "${srcdir}/sabnzbd.tmpfiles" "${pkgdir}/usr/lib/tmpfiles.d/sabnzbd.conf"
}
|