blob: 34234de6098f9aeab2bc413718d2fdb749ae17c1 (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit systemd
SRC_URI="https://download.sonarr.tv/v3/main/${PV}/Sonarr.main.${PV}.linux.tar.gz"
DESCRIPTION="Sonarr is a Smart PVR for newsgroup and bittorrent users"
HOMEPAGE="https://www.sonarr.tv"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="bindist strip test"
RDEPEND="
acct-group/sonarr
acct-user/sonarr
>=dev-lang/mono-6.6.0.161
media-video/mediainfo
dev-db/sqlite"
QA_PREBUILT="*"
S="${WORKDIR}/Sonarr"
src_install() {
newinitd "${FILESDIR}/${PN}.init-r2" ${PN}
keepdir /var/lib/${PN}
fowners -R ${PN}:${PN} /var/lib/${PN}
insinto /etc/logrotate.d
insopts -m0644 -o root -g root
newins "${FILESDIR}/${PN}.logrotate" ${PN}
dodir "/opt/${PN}"
cp -R "${S}/." "${D}/opt/${PN}" || die "Install failed!"
exeinto "/opt/${PN}"
doexe "${FILESDIR}/Sonarr"
systemd_newunit "${FILESDIR}/${PN}.service-r1" "${PN}.service"
systemd_newunit "${FILESDIR}/${PN}.service-r1" "${PN}@.service"
}
|