21 lines
587 B
TOML
21 lines
587 B
TOML
name = "breadarr"
|
|
description = "Lightweight Sonarr/Radarr/Prowlarr replacement"
|
|
binaries = ["breadarrd", "breadarr-tui"]
|
|
# breadarr runs natively (not in Docker), so unlike the old Sonarr/Radarr/
|
|
# Prowlarr containers it needs these on the host PATH directly.
|
|
system_deps = ["mkvtoolnix-cli", "ffmpeg"]
|
|
optional_system_deps = []
|
|
bread_deps = []
|
|
|
|
[[service]]
|
|
unit = "breadarrd.service"
|
|
enable = true
|
|
|
|
[config]
|
|
dir = "~/.config/breadarr"
|
|
example = "config.example.toml"
|
|
|
|
[install]
|
|
post_install = [
|
|
"systemctl --user is-active --quiet breadarrd || systemctl --user start breadarrd",
|
|
]
|