can't be bothered writing a commit message

This commit is contained in:
Breadway 2026-07-16 22:22:53 +08:00
commit 697b009627
55 changed files with 21320 additions and 0 deletions

21
bakery.toml Normal file
View file

@ -0,0 +1,21 @@
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",
]