blob: c88c087ce258cf6b59ca82845d81478a6f2c235b (
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
|
# Maintainer: txtsd <aur.archlinux@ihavea.quest>
# Maintainer: Donald Webster <fryfrog@gmail.com>
# Helpful URL: https://prowlarr.servarr.com/v1/update/develop?version=0.0.0.0&os=linux&runtime=netcore&arch=x64
pkgname=prowlarr-develop-bin
pkgver=1.29.0.4897
pkgrel=1
pkgdesc='Indexer manager/proxy for usenet and torrent users (develop branch)'
arch=(x86_64 aarch64 armv7h)
url='https://prowlarr.com'
license=('GPL-3.0-or-later')
groups=(servarr-develop-bin)
depends=(
gcc-libs
glibc
sqlite
zlib
)
optdepends=(
'postgresql: postgresql database'
'sabnzbd: usenet downloader'
'nzbget: usenet downloader'
'qbittorrent: torrent downloader'
'deluge: torrent downloader'
'rtorrent: torrent downloader'
'nodejs-flood: torrent downloader'
'vuze: torrent downloader'
'aria2: torrent downloader'
'transmission-cli: torrent downloader (CLI and daemon)'
'transmission-gtk: torrent downloader (GTK+)'
'transmission-qt: torrent downloader (Qt)'
'jackett: torrent indexer proxy'
'nzbhydra2: torznab and usenet indexer proxy'
'flaresolverr: A proxy server to bypass Cloudflare protection'
'sonarr: automatically integrates with and syncs indexers'
'radarr: automatically integrates with and syncs indexers'
'lidarr: automatically integrates with and syncs indexers'
'readarr: automatically integrates with and syncs indexers'
'whisparr: automatically integrates with and syncs indexers'
'mylar3: automatically integrates with and syncs indexers'
'lazylibrarian: automatically integrates with and syncs indexers'
)
provides=(prowlarr)
conflicts=(prowlarr)
options=(!debug)
install=prowlarr.install
source=(
package_info
prowlarr.service
prowlarr.sysusers
prowlarr.tmpfiles
)
source_x86_64=("Prowlarr.develop.${pkgver}.linux-core-x64.tar.gz::https://prowlarr.servarr.com/v1/update/develop/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=x64")
source_aarch64=("Prowlarr.develop.${pkgver}.linux-core-arm64.tar.gz::https://prowlarr.servarr.com/v1/update/develop/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=arm64")
source_armv7h=("Prowlarr.develop.${pkgver}.linux-core-arm.tar.gz::https://prowlarr.servarr.com/v1/update/develop/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=arm")
sha256sums=('c2c998c73ba78eac6ad7519d5d46bfa3354dd6d575a410aefb4b432a2f387f10'
'5aa5a7800453d13948430744ca9f32584bf64f09daadf534e6eb2f6c5c452b4c'
'ee61f5621eae6ab932fb093a4f75a0ab11bf9e3ca829f0d34c25014f68aeff7d'
'75591d19518bafc60862c60848ecad84f92c7f2b47b2b4eeafcbbbd650a43043')
sha256sums_x86_64=('aa7c53bffc9b31ca7f7d05cad094278178f17428a4ebe5215433e051754b9754')
sha256sums_aarch64=('f1006dbf410bd174e15f0da5ee6635d8178868becbcbc2d52850f3b3923316db')
sha256sums_armv7h=('d10aef5cae1229b8a86bce4aa4520f83c4bab22c358f34783c5bb50e29a1ef04')
package() {
install -dm755 "${pkgdir}/usr/lib/prowlarr/bin"
# License
install -Dm644 Prowlarr/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}"
rm Prowlarr/LICENSE
# Remove Service Helpers, and Update files
rm Prowlarr/ServiceInstall*
rm Prowlarr/ServiceUninstall*
rm -rf Prowlarr/Prowlarr.Update
# Disable built in updater.
install -Dm644 package_info "${pkgdir}/usr/lib/prowlarr"
echo "PackageVersion=${pkgver}-${pkgrel}" >> "${pkgdir}/usr/lib/prowlarr/package_info"
# Copy Prowlarr
cp -dr Prowlarr/* "${pkgdir}/usr/lib/prowlarr/bin"
# Systemd
install -Dm644 prowlarr.service "${pkgdir}/usr/lib/systemd/system/prowlarr.service"
install -Dm644 prowlarr.sysusers "${pkgdir}/usr/lib/sysusers.d/prowlarr.conf"
install -Dm644 prowlarr.tmpfiles "${pkgdir}/usr/lib/tmpfiles.d/prowlarr.conf"
}
|